在Highcharts中是否有饼图切片悬停事件?

时间:2014-09-18 22:33:19

标签: javascript highcharts

我刚刚开始使用Highcharts,当用户将鼠标悬停在某个切片上时,我需要捕获一个事件,并获取有关该切片的上下文信息。那有什么事吗?我还没有在文档中找到一个。

1 个答案:

答案 0 :(得分:1)

plotOptions.series允许添加events.mouseOverevents.mouseOut处理程序,la:

$('#container').highcharts({
    ...
    plotOptions: {
        series: {
            point: {
                events: {
                    mouseOver: function () {
                        $reporting.html('x: ' + this.x + ', y: ' + this.y);
                    }
                }
            },
            events: {
                mouseOut: function () {
                    $reporting.empty();
                }
            }
        }
    },
    ...
});

Demo