1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
let date;
let chart;
fetch("api/participation")
.then((response) => response.json())
.then((response) => {
data = response;
console.log(data);
render("bar");
});
function render(type) {
const ctx = document.getElementById("participation").getContext("2d");
chart = new Chart(ctx, {
type,
data: {
labels: data.map((v) => v.name),
datasets: [
{
label: "% of Participation",
data: data.map((v) => Math.round(v.percentage * 100) / 100 || 0),
backgroundColor: () => "#" + (Math.random().toString(16) + "0000000").slice(2, 8),
borderWidth: 1,
},
],
},
options: {
legend: {
display: false,
},
scales: {
yAxes: [
{
ticks: {
beginAtZero: true,
precision: 0,
},
},
],
},
},
});
}
let index = 0;
const types = ["pie", "doughnut", "polarArea", "radar", "line", "bar"];
document.getElementById("switch").addEventListener("click", () => {
chart.destroy();
render(types[index]);
if (index + 1 < types.length) index++;
else index = 0;
});
|