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
{{ message }}
This repository has been archived by the owner on Dec 26, 2018. It is now read-only.
After some debugging I found the error in Line 81 in DataSeries.js: if (Object.prototype.toString.call(xAccessor(point)) === '[object Date]') {
The point object as this place has only a x and y value, but no date or count as expected by the accessor. Therefore, the call fails and returns null/undefined.
The text was updated successfully, but these errors were encountered:
I've some data series which look like this:
I forked the LineChart Fiddle to demonstrate the problem: https://jsfiddle.net/Le5vt2ot/
After some debugging I found the error in Line 81 in
DataSeries.js
:if (Object.prototype.toString.call(xAccessor(point)) === '[object Date]') {
The point object as this place has only a x and y value, but no date or count as expected by the accessor. Therefore, the call fails and returns null/undefined.
The text was updated successfully, but these errors were encountered: