diff --git a/charts.html b/charts.html
index c3fe7bf..d178a3b 100644
--- a/charts.html
+++ b/charts.html
@@ -121,7 +121,7 @@
chart.data.datasets[0].data.push({x: snapshot.time, y: snapshot.humidity});
chart.data.datasets[1].data.push({x: snapshot.time, y: snapshot.temp});
chart.data.datasets[2].data.push({x: snapshot.time, y: snapshot.co2});
- chart.update();
+ chart.update(0);
}, 10 * 1000);
}