From 9c35f257c5ad079fff8cfbafc42ad066f998480b Mon Sep 17 00:00:00 2001 From: Reimar Date: Tue, 1 Apr 2025 12:39:53 +0200 Subject: [PATCH] Enable data decimation --- frontend/scripts/home.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/scripts/home.js b/frontend/scripts/home.js index 52e0db2..b91ee24 100644 --- a/frontend/scripts/home.js +++ b/frontend/scripts/home.js @@ -109,9 +109,10 @@ async function init() { backgroundColor: "rgba(0,0,255,1.0)", borderColor: "rgba(0,0,255,0.1)", data: dataset.map(log => ({ - x: log.date, + x: new Date(log.date).getTime(), y: log.temperature, })), + parsing: false, })), }, options: { @@ -121,6 +122,9 @@ async function init() { label: item => `Temperature: ${item.formattedValue}°C`, }, }, + decimation: { + enabled: true, + }, }, scales: { x: {