ruby
ruby

Reputation: 269

is it possible to add a filter to highcharts?

I was wondering if there is a feature existing in highcharts to filter the data on the chart? For example I have a bar chart and I want to implement a filter that will filter values on the chart (may be show charts with y axis value greater than a threshold or something of that sort)

Can anybody point me to the correct resource?

Upvotes: 3

Views: 6677

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37578

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

Upvotes: 1

Related Questions