Highcharts pannig 和缩小限制

Highcharts pannig and zooming out of limits

我想使用 Highcharts,我需要 pan/zoom 外部显示的数据。 我需要 pan/zoom(两侧)加载数据之外才能从我的数据库加载新数据。

What I want to do with Highcharts

目前我正在使用 Plotly 图表,但它根本不处理触摸设备(捏合缩放)。

谢谢, s.

您可以为 xAxis 设置 minmax 属性:

xAxis: {
    ordinal: false,
    min: -999,
    max: 1999
}

现场演示: http://jsfiddle.net/BlackLabel/rx4ewu7n/

API参考:https://api.highcharts.com/highstock/xAxis.max