A short answer to your question is yes, Highstock supports the chart.zoomType option.
In the latest release of GWT Highcharts, the setZoomType method was moved to the BaseChart class so that it could be used in both the Chart as well as StockChart types. You can use it, for example, by doing:
final StockChart chart = new StockChart()
.setZoomType(Chart.ZoomType.X)
;
The Showcase Application uses highstock.js for all of the examples as it supports all of the Highcharts options in addition to the Highstock options.
Last edit: Cory Skowronek 2013-08-15
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi Anu,
A short answer to your question is yes, Highstock supports the chart.zoomType option.
In the latest release of GWT Highcharts, the setZoomType method was moved to the BaseChart class so that it could be used in both the Chart as well as StockChart types. You can use it, for example, by doing:
The Showcase Application uses highstock.js for all of the examples as it supports all of the Highcharts options in addition to the Highstock options.
Last edit: Cory Skowronek 2013-08-15