score:6

Accepted answer

Replace

Chart.defaults.global = {
    responsive: false
    // animation: true
}

with

Chart.defaults.global.responsive = false;
// Chart.defaults.global.animation = true;

You don't want to replace all the defaults, just the ones you want.


Related Query

More Query from same tag