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.
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.