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
It could be due to the too-complicated domain comparison code which will not work for dates because it uses !== (when comparison is not needed at all).
The text was updated successfully, but these errors were encountered:
Thanks @awojtas, I misunderstood this bug the first time around, so your images helped a lot.
It turns out that the axes did not respond to a rescale, only to a zoom event or a render. I have fixed this, and also made it unnecessary to call .rescale() when setting the x or y scales. (It is still necessary to call rescale when changing just the domain of the scale.)
Perhaps related to #790, in this case it looks like the scale is not changed correctly.
http://stackoverflow.com/questions/25710058/dc-js-x-axis-not-changing-on-date-range-change
It could be due to the too-complicated domain comparison code which will not work for dates because it uses
!==
(when comparison is not needed at all).The text was updated successfully, but these errors were encountered: