From 28cffcfb42b70df61c448854b85b61bc33b6398d Mon Sep 17 00:00:00 2001 From: Reimar Date: Tue, 1 Apr 2025 13:50:42 +0200 Subject: [PATCH] Fix data decimation --- frontend/home/index.html | 2 +- frontend/scripts/home.js | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/home/index.html b/frontend/home/index.html index 046a29d..a0ffc32 100644 --- a/frontend/home/index.html +++ b/frontend/home/index.html @@ -15,7 +15,7 @@
- Home + Home
Devices Profile diff --git a/frontend/scripts/home.js b/frontend/scripts/home.js index 074f1d1..b26d5be 100644 --- a/frontend/scripts/home.js +++ b/frontend/scripts/home.js @@ -42,8 +42,8 @@ function buildTable(data) { data.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime()); - // TODO allow showing more than 50 by e.g. clicking - data = data.slice(0, 50); + // TODO allow showing more than 50 by e.g. clicking + data = data.slice(0, 50); data.forEach((log) => { var averageTemp = (log.tempHigh + log.tempLow) / 2.0; @@ -115,10 +115,10 @@ async function init() { x: new Date(log.date).getTime(), y: log.temperature, })), - parsing: false, })), }, options: { + parsing: false, plugins: { tooltip: { callbacks: { @@ -127,6 +127,8 @@ async function init() { }, decimation: { enabled: true, + algorithm: "lttb", + samples: window.innerWidth / 2, }, }, scales: {