我刚刚开始使用Highcharts,当用户将鼠标悬停在某个切片上时,我需要捕获一个事件,并获取有关该切片的上下文信息。那有什么事吗?我还没有在文档中找到一个。
答案 0 :(得分:1)
plotOptions.series
允许添加events.mouseOver
和events.mouseOut
处理程序,la:
$('#container').highcharts({
...
plotOptions: {
series: {
point: {
events: {
mouseOver: function () {
$reporting.html('x: ' + this.x + ', y: ' + this.y);
}
}
},
events: {
mouseOut: function () {
$reporting.empty();
}
}
}
},
...
});