Hello, I have an application with React and Chartfactor-toolkit, I have a Geomap-gl, a Raw data table, some Bars and the interaction manager, when i click on a Bars they apply a filter to the other visualizations, but, what i need is selecting more than one value from the Bars, is there a way to do that?
Bars filtering with more than one value
emoya
#2
Sure you can do it, to achieve that you need to use the dragFilter
mode of the dataZoom
property, you can check the docuemntation to know more about this, but this is an example:
.set("dataZoom", "dragFilter")
That config allows you to select a range of bars.