class working kindof, kan nog niet gelezen worden vanaf andere js file.

This commit is contained in:
Bram Barbieri
2024-03-31 20:48:50 +02:00
parent 3435bdaaab
commit f2050a54a4
3 changed files with 60 additions and 118 deletions

View File

@@ -1,27 +1,27 @@
class QuestionCreationClass {
constructor(data, label) {
this.data = data;
this.label = label;
}
// class QuestionCreationClass {
// constructor(data, label) {
// this.data = data;
// this.label = label;
// }
get questionData() {
return {
labels: this.label,
datasets: [{
label: 'Responses',
data: this.data,
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)'
],
borderWidth: 1
}]
};
}
}
// get questionData() {
// return {
// labels: this.label,
// datasets: [{
// label: 'Responses',
// data: this.data,
// backgroundColor: [
// 'rgba(255, 99, 132, 0.2)',
// 'rgba(54, 162, 235, 0.2)',
// 'rgba(255, 206, 86, 0.2)'
// ],
// borderColor: [
// 'rgba(255, 99, 132, 1)',
// 'rgba(54, 162, 235, 1)',
// 'rgba(255, 206, 86, 1)'
// ],
// borderWidth: 1
// }]
// };
// }
// }