Can I add a filter to highcharts?

I was wondering if there is a function existing in highcharts to filter data on a chart? For example, I have a histogram, and I want to implement a filter that will filter values ​​on a chart (charts with a y-axis value greater than a threshold value or something like that can be displayed)

Can someone point me to the correct resource?

+3
source share
1 answer

You can prepare your own buttons and call setExtremes (). In the case of hwen you need to dynamically change the data, you can use setData / addSeries () / remove ()

+1
source

All Articles