How to get rangeSelector to work with HighCharts

Can I use HighStocks rangeSelector with HighCharts? If not, is there any other method someone could suggest? It looks like this useful feature will be available for both libraries.

+7
source share
3 answers

You can use highstock.js and initialize high charts with rangeSelector , as in the example:

http://jsfiddle.net/73DyX/

+8
source
Range selector

is a feature used with highstock. if you want a similar implementation using highchart, you can get something like this

This is a dynamic diagram of key parts that may come in handy.

+4
source

As far as I know, a range selector is not something you can use with HighCharts. You must use HighStock to get this functionality.

Highstock processes time data, so the range selector is available to you. HighCharts does not process time data so well (it can be done, but it is less flexible). Since most HighCharts features can be found in HighStock, you are probably better off using HighStock for any application requiring a range selection.

0
source

All Articles