我通过作为参数传递在范围区域的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)来放大区域。请帮我解决这个问题。
答案 0 :(得分:3)
您必须使用某个活动,并在此事件中执行此操作:
chart.xAxis[0].setExtremes(2, 6);