如何通过在绘图中输入范围作为参数来选择缩放区域(高图表)?

时间:2014-11-09 12:02:43

标签: javascript highcharts

我通过作为参数传递在范围区域的zoomin上。我找到了放大

的非常好的例子
$(function () {
    // create the chart
    $('#container').highcharts({
        chart: {
            zoomType: 'x'
        },
        title: {
            text: 'Chart selection demo'
        },
        subtitle: {
            text: 'Click and drag the plot area to draw a selection'
        },

        series: [{
            type: 'column',
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
        }, {
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4].reverse()
        }]
      });
   });

但是如何通过传递参数范围值(此处为x-min = 2和x-max = 6)来放大区域。请帮我解决这个问题。

1 个答案:

答案 0 :(得分:3)

您必须使用某个活动,并在此事件中执行此操作:

chart.xAxis[0].setExtremes(2, 6);