Zoom In & Zoom Out buttons - highcharts

前端 未结 1 1275
既然无缘
既然无缘 2021-01-16 11:13

I have custom zoom buttons(Zoom In, Zoom out) in bubble chart. When user clicks on Zoom in button, Zooming should happen from left to right in the chart. Similarly Zoom out

相关标签:
1条回答
  • 2021-01-16 11:43

    Use axis.setExtremes() method to zoom in to a specific area.

    $('#zoom').click(function() {
      chart.xAxis[0].setExtremes(1327449600000,1422144000000, false)
      chart.yAxis[0].setExtremes(10, 20)
    

    example https://jsfiddle.net/nhajopys/

    0 讨论(0)
提交回复
热议问题