Highcharts Display Scrollbar When Zooming
Zooming with a zoomType of 'x' in a Highcharts chart, seems to only crop the data area between given coordinate stops. Is there a way to zoom in and still have all data available t
Solution 1:
The simplest solution is to use scrollbar
feature from Highstock:
scrollbar: {
enabled:true
}
Live demo:https://jsfiddle.net/BlackLabel/be5wvg9q/
API Reference:https://api.highcharts.com/highstock/scrollbar
Post a Comment for "Highcharts Display Scrollbar When Zooming"