-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart.js
72 lines (62 loc) · 1.4 KB
/
chart.js
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import * as chartJs from "chart.js";
let chart;
export const formatDateLabel = (timestamp) => {
const date = new Date(timestamp);
const month = date.getMonth();
const day = date.getDate();
const formatPart = (value) => {
return value < 10 ? `0${value}` : `${value}`;
};
return `${formatPart(day)}/${formatPart(month + 1)}`;
};
export const renderChart = (readings) => {
chartJs.Chart.defaults.font.size = "10px";
chartJs.Chart.register.apply(
null,
Object.values(chartJs).filter((chartClass) => chartClass.id)
);
const labels = readings.map(({ time }) => formatDateLabel(time));
const values = readings.map(({ value }) => value);
const data = {
labels: labels,
datasets: [
{
label: "kWh usage",
data: values,
fill: true,
borderColor: "rgb(75, 192, 192)",
tension: 0.1,
borderWidth: 0.2,
backgroundColor: "#5A8EDA",
borderRadius: 10,
},
],
};
if (chart) {
chart.destroy();
}
chart = new chartJs.Chart("usageChart", {
type: "bar",
data: data,
options: {
scales: {
y: {
grid: {
display: false,
},
},
x: {
grid: {
display: false,
},
},
},
plugins: {
legend: {
display: false,
},
},
maintainAspectRatio: false,
},
});
};