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
The majority of scales (including sequential and diverging) support calling rangeRound() to return the rounded min and max.
However, time (underpinned by continuous) only supports .rangeRound([min, max]).
Not passing in arguments causes the method to throw, since the range gets set to undefined, then the scale expects the range to be defined!
Uncaught TypeError: Cannot read property 'length' of undefined
The majority of scales (including sequential and diverging) support calling
rangeRound()
to return the rounded min and max.However,
time
(underpinned by continuous) only supports.rangeRound([min, max])
.Not passing in arguments causes the method to throw, since the range gets set to undefined, then the scale expects the range to be defined!
The text was updated successfully, but these errors were encountered: