Column chart Filtering by User

0
Hi, I am using Column chart , added 4 series series and microflow as data source. I want to give option to user to select which series user want to see. For example, giving four checkbox and chart should show only those series which are selected by User in Checkbox. How shall I proceed ? Thanks in Advance.
asked
1 answers
0

One way to do this without an extra non persistant object is to configure the series to be selectable from the legend.

To do this, you need to add series configuration in the ‘Advanced’ tab of each series.

f.e.:

{
"visible": "legendonly"
}

The series will now be visible in the legend, but not in the chart. When you click the item in the legend, the column will appear. You can choose to display some bars by default, by not adding this configuration.

All options: look here

Goodluck!

answered