作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 HighStock股票图表库生成基本的 OHLC 股票图表。我想在生成图表时执行一些操作(以及在通过更改显示的时间范围重新生成图表之后)。我正在尝试使用 plotOptions.ohlc.events.show
事件 ( documentation ) 来做到这一点。
我遇到的问题是 even 根本没有开火。如果我按照 example for the 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");
}
}
}
}
});
最佳答案
将图表部分改成类似的东西
chart: {
renderTo: 'container',
events: {
redraw: function(){ // or load - refer to API documentation
alert('Chart Loaded');
}
}
},
他们有一个不错的 API 浏览器 - 可能会派上用场 http://www.highcharts.com/ref/#chart-events--load
关于javascript - 图表重绘时的 HighCharts Stock Chart 火灾事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8363825/
我有四个运行良好的 NSTimer。唯一的问题是两个应该开火,然后另外两个应该在前两个的中间开火。这是我的代码: initTimer = [NSTimer scheduledTimerWithT
我使用 SmartAdmin 进行 Angular,最近我将 Angular 从 1.4.12 更新到 Angular v1.6.6,之后我发现当我在使用 JarvisWidget 的状态之间切换时,
我是一名优秀的程序员,十分优秀!