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
This is incorrect because it redraws the default chart group, which might not be the same chart group where this filter resides. Instead it should call chart.redrawGroup() (or supply its own chart group name).
The text was updated successfully, but these errors were encountered:
It took me some time to figure out why the text filter wasn't working anymore and then I remembered that I recently added groups to the charts. After some google magic I found dc-js#1498 en by changing redrawAll(); to redrawAll(chartGroup); it works again.
Currently when the filter changes,
textFilterWidget
callsdc.js/src/text-filter-widget.js
Line 63 in 87cf58e
This is incorrect because it redraws the default chart group, which might not be the same chart group where this filter resides. Instead it should call
chart.redrawGroup()
(or supply its own chart group name).The text was updated successfully, but these errors were encountered: