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
|
fetch("api/votes")
.then((response) => response.json())
.then((response) => {
const ctx = document.getElementById("votes").getContext("2d");
new Chart(ctx, {
type: "bar",
data: {
labels: response.map((v) => v.name),
datasets: [
{
label: "# of Votes",
data: response.map((v) => v.votes || 0),
backgroundColor: () => "#" + (Math.random().toString(16) + "0000000").slice(2, 8),
borderWidth: 1,
},
],
},
options: {
legend: {
display: false,
},
tooltips: {
enabled: false,
},
scales: {
yAxes: [
{
ticks: {
beginAtZero: true,
precision: 0,
},
},
],
},
},
});
});
|