geomajor56
geomajor56

Reputation: 282

Highcharts rangeSelector for multiple charts

I have 4 charts which contain multiple series. Is it possible to have the rangeSelector() change all charts at once?

Even more desirable would be using the sliding master detail which is enabled like so: $('#container').highcharts('StockChart', { ....

If it's possible could someone point me to references or examples

thanks in advance,

MAS

Upvotes: 2

Views: 1712

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37578

You can use afterSetExtremes() to catch event form one chart, and use setExtrmes to set range on the others charts. http://api.highcharts.com/highstock#xAxis.events.afterSetExtremes http://api.highcharts.com/highstock#Axis.setExtremes()

Upvotes: 2

Related Questions