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;
}
Source:stackexchange.com