gpt4 book ai didi

javascript - donut 中的馅饼上的共享工具提示?

转载 作者:行者123 更新时间:2023-11-28 02:14:20 27 4
gpt4 key购买 nike

我在 Highcharts 中对 donut 中的馅饼很感兴趣,但我似乎无法显示图例或共享工具提示。工作正常with non-shared tooltips :

tooltip: {
formatter: function () {
return this.point.name + ': ' +this.y
+ ' units (' + Highcharts.numberFormat(this.percentage, 0) + '%)'
;

},
},

但是如果我尝试将其转换为 shared 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
},

我不知道我做错了什么。

最佳答案

刚刚查看了格式化程序函数中的 highcharts (this) 对象。不确定您想要完成什么,但它看起来像 highcharts 对象包含 seriespoints 数组:

$.each(this.series.points, function (i, point) {
s += point.name + ' ' + point.y + ' ' + point.percentage + '<br/>';
});

Fiddle

编辑:添加换行符以达到良好的效果=D

关于javascript - donut 中的馅饼上的共享工具提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16641242/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com