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
calls .datum() on a d3 selection, while this selection can be empty. Calling this method on an empty selection triggers a TypeError by accessing a property on null.
Steps to check or reproduce
This happens when grid.focus.show is set to false in options of a line chart. It only affects touch devices.
The text was updated successfully, but these errors were encountered:
Description
The code at
billboard.js/src/internals/grid.js
Line 389 in 01ba388
.datum()
on a d3 selection, while this selection can be empty. Calling this method on an empty selection triggers a TypeError by accessing a property onnull
.Steps to check or reproduce
This happens when
grid.focus.show
is set tofalse
in options of a line chart. It only affects touch devices.The text was updated successfully, but these errors were encountered: