You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file-"d3.js", Method-"format.parse" and line-if (i != string.length) return null;
Year is supported only till "9999"(string.length=14) if year "10000" is passed then it is returning as null because length will be increased by 1(string.length=15).
Is it a technical restriction or is there any other way forward to handle such scenarios ?
The text was updated successfully, but these errors were encountered:
In the file-"d3.js", Method-"format.parse" and line-if (i != string.length) return null;
Year is supported only till "9999"(string.length=14) if year "10000" is passed then it is returning as null because length will be increased by 1(string.length=15).
Is it a technical restriction or is there any other way forward to handle such scenarios ?
The text was updated successfully, but these errors were encountered: