10 lines
No EOL
228 B
JavaScript
10 lines
No EOL
228 B
JavaScript
window.onload = loadData
|
|
|
|
async function loadData() {
|
|
const points = await fetchConsumption({
|
|
start: '2026-05-04T00:00:00',
|
|
end: '2026-05-09T00:00:00',
|
|
granularity: 'day',
|
|
});
|
|
renderChart(points);
|
|
} |