使用工具提示格式化程序,我们可以同时显示系列名称和值,但是当使用 plotoptions 事件 mouseover 完成相同操作时,无法获取系列名称和值
工具提示:格式化程序
情节选项:鼠标悬停
mouseOver: function () {
$.each(this, function (i, e) {
$reporting.html('x: ' + this.x + 'Category: ' + this.series.name + ', y: ' +Highcharts.numberFormat(Math.abs(this.y)));
});
}