Files
J1B3-Sensor-boxes/web/newWebsite/questions-chart-class.js
2024-04-01 13:56:49 +02:00

27 lines
616 B
JavaScript

class ChartConfigClass{
constructor(data, text){
this.data = data
this.text = text
}
get chartConfig() {
return{
type: 'pie',
data: this.data,
options: {
responsive: true,
legend: {
position: 'top',
},
title: {
display: true,
text: this.text
},
animation: {
animateScale: true,
animateRotate: true
}
}
}
}
}