I would like to use Highcharts and I need to pan/zoom outside displayed data. I need to pan/zoom (on both sides) outside the loaded data to load new data from my database.
What I want to do with Highcharts
Currently I'm using the Plotly graph, but its not handling touch devices (pinch zooming) at all.
thanks, s.
You can set min
and max
properties for xAxis
:
xAxis: {
ordinal: false,
min: -999,
max: 1999
}
Live demo: http://jsfiddle.net/BlackLabel/rx4ewu7n/
API Reference: https://api.highcharts.com/highstock/xAxis.max