Enable data decimation
This commit is contained in:
parent
a12784934b
commit
9c35f257c5
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user