make chart adjustments more responsive

main
xenofem 2022-04-16 14:46:18 -04:00
parent 94e12a41f7
commit 9fa4942e9b
1 changed files with 7 additions and 2 deletions

View File

@ -170,6 +170,9 @@ function plot(data) {
errorBarWhiskerSize: 5,
},
},
animation: {
duration: 0,
},
};
};
@ -293,8 +296,10 @@ function plot(data) {
const update = () => {
updateYMax();
northChart.update();
southChart.update();
setTimeout(() => {
northChart.update();
southChart.update();
}, 10);
const params = new URLSearchParams();
const start = startInput.value;