I saw in this video a cool feature with the Bars representing years where bars were selected but the rest were kept. Is that a different Bars visualization? How can I do that?
How to highlight bars
eduardo
#2
Hi @sandip, Is the same Bars visualization, you just need to enable the client filters for it from the Interaction Manager:
var rules = { "bars-element-id": { clientFilters: true }}
imanager.set('rules', rules)
This will tell the Interaction Manager that everytime a filter matching the group by of the Bars is applied it should be treated as a client filter, so it won’t trigger any query from the Bars and will have that highlight effect.