我正在使用HighStock股票图表库来生成基本的 OHLC 股票图表。我想在生成图表时执行一些操作(以及在通过更改显示的时间范围重新生成图表之后)。我正在尝试使用plotOptions.ohlc.events.show
事件(文档)来做到这一点。
我遇到的问题是偶数根本没有开火。如果我按照click event 的示例,当我单击系列时,警报会正确触发。
var chart = new Highcharts.StockChart({
chart: {
renderTo: 'divChart',
height: 450
},
rangeSelector: {
selected: 2
},
xAxis: {
maxZoom: 14 * 24 * 3600000
},
yAxis: [{
title: {
text: 'OHLC'
},
height: 200,
lineWidth: 2
}, {
title: {
text: 'Volume'
},
top: 250,
height: 100,
offset: 0,
lineWidth: 2
}],
title: {
text: 'Stock Chart'
},
series: [{
type: 'ohlc',
name: 'Prices',
id: 'prices',
data: ohlc
}, {
type: 'column',
name: 'Volume',
data: volume,
yAxis: 1
}],
// The event I am trying to bind to
plotOptions: {
series: {
events: {
show: function () {
alert("show");
}
}
}
}
});
- 这是重绘图表时触发事件的正确方法吗?
- 如果是这样,为什么事件没有触发,我该如何解决?