我在 Highcharts 的甜甜圈中对馅饼大惊小怪,我似乎无法获得图例或共享工具提示。它适用于非共享工具提示:
tooltip: {
formatter: function () {
return this.point.name + ': ' +this.y
+ ' units (' + Highcharts.numberFormat(this.percentage, 0) + '%)'
;
},
},
但是,如果我尝试将其转换为共享的 tooltip,则什么也不会出现。
tooltip: {
formatter: function () {
var s = this.series.name + this.point.name;
$.each(this.points, function (i, point) {
s += point.name + ' ' + point.y + ' ' + point.percentage;
});
return s;
},
shared: true
},
我无法弄清楚我做错了什么。