Highcharts/Highstock : 使用 overflow-x 在图表上自动滚动,而不是滚动条

Highcharts/Highstock : Auto scroll on the graph with overflow-x, instead of a scrollbar

已将最小值设置为仅显示 6 个柱。 启用滚动条会给我滚动条,但我想使用 overflow-x: scroll 在图形上自动滚动。 在没有滚动条的情况下,我可以在移动设备上滑动图形时使用滚动条吗?

谁能帮我解决这个问题。

Please find jsfiddle for your reference. http://jsfiddle.net/2obuvn1e/1/

非常感谢任何帮助。

感谢和问候

露丝

使用 Chart.panning 可以实现没有滚动条的相同功能。

chart: {
        type: 'column',
        marginLeft: 150,
        panning: true
    },

示例:http://jsfiddle.net/2obuvn1e/4/

您可以考虑的其他选项是 Chart.panKey and for mobiles devices followTouchMove.