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)",
|
backgroundColor: "rgba(0,0,255,1.0)",
|
||||||
borderColor: "rgba(0,0,255,0.1)",
|
borderColor: "rgba(0,0,255,0.1)",
|
||||||
data: dataset.map(log => ({
|
data: dataset.map(log => ({
|
||||||
x: log.date,
|
x: new Date(log.date).getTime(),
|
||||||
y: log.temperature,
|
y: log.temperature,
|
||||||
})),
|
})),
|
||||||
|
parsing: false,
|
||||||
})),
|
})),
|
||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
@ -121,6 +122,9 @@ async function init() {
|
|||||||
label: item => `Temperature: ${item.formattedValue}°C`,
|
label: item => `Temperature: ${item.formattedValue}°C`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
decimation: {
|
||||||
|
enabled: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
scales: {
|
scales: {
|
||||||
x: {
|
x: {
|
||||||
|
Loading…
Reference in New Issue
Block a user