我在这里找到了这个帖子,但它对我没有帮助,所以我再问一次。 HighStock HighCharts 在点击事件上设置标志
这是我的 jsfiddle:http: //jsfiddle.net/Charissima/KDP87/10/
我有两个问题:
如何在点击事件函数中获取 ohlc 值?我尝试了 this.points[0].point.close,它在工具提示格式化程序功能中起作用,但在单击时不起作用。
如何像http://jsfiddle.net/U2Z2x/2/那样在蜡烛上设置标志?
plotOptions: { series: { cursor: 'pointer', point: { events: { click: function () { alert('Date: ' + Highcharts.dateFormat('%Y-%m-%d',this.x) + ', value: ' + this.y); alert('Date: ' + Highcharts.dateFormat('%Y-%m-%d',this.x) + ', close: ' + this.points[0].point.close); } } } } },