Enable data decimation

This commit is contained in:
Reimar 2025-04-01 12:39:53 +02:00
parent a12784934b
commit 9c35f257c5
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268

View File

@ -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: {