Chartjs-Chart.js won't display the chart in IE

1👍

As Surely said, to fix the problem, you’ll have to add the following before init charts :

if (Number.MAX_SAFE_INTEGER === undefined) {
    Number.MAX_SAFE_INTEGER = 9007199254740991;
}
if (Number.MIN_SAFE_INTEGER === undefined) {
    Number.MIN_SAFE_INTEGER = -9007199254740991;
}

Leave a comment