Chartjs-Chart.js chart flickering when re-opening page

-1👍

Probably because you are redrawing chart on the same div or canvas use .destroy();

Eg: To create

window.myPie = new Chart(ctx, config);

and To destroy before redrawing

window.myPie.destroy();

Leave a comment