Add more statistics with graphs

This commit is contained in:
ellite
2023-11-15 12:15:30 +01:00
parent 602387df58
commit 190c052963
7 changed files with 201 additions and 28 deletions
File diff suppressed because one or more lines are too long
+21
View File
@@ -0,0 +1,21 @@
function loadGraph(container, dataPoints, symbol, run) {
if (run) {
var ctx = document.getElementById(container).getContext('2d');
var chart = new Chart(ctx, {
type: 'pie',
data: {
datasets: [{
data: dataPoints.map(point => point.y),
}],
labels: dataPoints.map(point => `${point.label} (${point.y}${symbol})`),
},
options: {
animation: {
animateRotate: true,
animateScale: true,
},
},
});
}
}