Fix data decimation
This commit is contained in:
parent
96fe8a4cdf
commit
28cffcfb42
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="topnav">
|
<div class="topnav">
|
||||||
<a class="active" href="/home/index.html">Home</a>
|
<a class="active" href="/home">Home</a>
|
||||||
<div style="display: flex; justify-content: flex-end;">
|
<div style="display: flex; justify-content: flex-end;">
|
||||||
<a href="/devices">Devices</a>
|
<a href="/devices">Devices</a>
|
||||||
<a href="/profile">Profile</a>
|
<a href="/profile">Profile</a>
|
||||||
|
@ -42,8 +42,8 @@ function buildTable(data) {
|
|||||||
|
|
||||||
data.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
|
data.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime());
|
||||||
|
|
||||||
// TODO allow showing more than 50 by e.g. clicking
|
// TODO allow showing more than 50 by e.g. clicking
|
||||||
data = data.slice(0, 50);
|
data = data.slice(0, 50);
|
||||||
|
|
||||||
data.forEach((log) => {
|
data.forEach((log) => {
|
||||||
var averageTemp = (log.tempHigh + log.tempLow) / 2.0;
|
var averageTemp = (log.tempHigh + log.tempLow) / 2.0;
|
||||||
@ -115,10 +115,10 @@ async function init() {
|
|||||||
x: new Date(log.date).getTime(),
|
x: new Date(log.date).getTime(),
|
||||||
y: log.temperature,
|
y: log.temperature,
|
||||||
})),
|
})),
|
||||||
parsing: false,
|
|
||||||
})),
|
})),
|
||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
|
parsing: false,
|
||||||
plugins: {
|
plugins: {
|
||||||
tooltip: {
|
tooltip: {
|
||||||
callbacks: {
|
callbacks: {
|
||||||
@ -127,6 +127,8 @@ async function init() {
|
|||||||
},
|
},
|
||||||
decimation: {
|
decimation: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
|
algorithm: "lttb",
|
||||||
|
samples: window.innerWidth / 2,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
scales: {
|
scales: {
|
||||||
|
Loading…
Reference in New Issue
Block a user