Do a nice fast animation
This commit is contained in:
parent
29834a33f8
commit
5301ab4235
1 changed files with 3 additions and 7 deletions
|
@ -17,10 +17,7 @@ const chartDefaults: ChartConfiguration = {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
animation: {
|
animation: {
|
||||||
duration: 0,
|
duration: 250,
|
||||||
},
|
|
||||||
hover: {
|
|
||||||
animationDuration: 0,
|
|
||||||
},
|
},
|
||||||
elements: {
|
elements: {
|
||||||
point: {
|
point: {
|
||||||
|
@ -58,7 +55,6 @@ const chartDefaults: ChartConfiguration = {
|
||||||
},
|
},
|
||||||
} ],
|
} ],
|
||||||
},
|
},
|
||||||
responsiveAnimationDuration: 0,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -133,7 +129,7 @@ export default () => {
|
||||||
data.push(bytesToMegabytes(stats.memory_bytes));
|
data.push(bytesToMegabytes(stats.memory_bytes));
|
||||||
data.shift();
|
data.shift();
|
||||||
|
|
||||||
memory.update();
|
memory.update({ lazy: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cpu && cpu.data.datasets) {
|
if (cpu && cpu.data.datasets) {
|
||||||
|
@ -142,7 +138,7 @@ export default () => {
|
||||||
data.push(stats.cpu_absolute);
|
data.push(stats.cpu_absolute);
|
||||||
data.shift();
|
data.shift();
|
||||||
|
|
||||||
cpu.update();
|
cpu.update({ lazy: true });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue