1

如何在 Highcharts 中获取甜甜圈图以自动计算我发送的数据的百分比。例如,我的数据可以是 data: [50.85, 7.35, 33.06, 2.81] 并且我想知道图表如何计算内部饼图(环形图)以显示或呈现为百分比?

4

1 回答 1

2

利用:

this.percentage

示例jsFiddle

dataLabels: {
     formatter: function() {
     return '<b>'+ this.point.name +':</b> '+ this.percentage +'%';
     }
}

接口:

http://api.highcharts.com/highcharts#plotOptions.series.dataLabels.formatter

http://api.highcharts.com/highcharts#tooltip.formatter

于 2013-05-09T14:43:00.063 回答