如何获得highcharts Donut图表来自动计算百分比

时间:2013-05-09 14:23:04

标签: highcharts

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

1 个答案:

答案 0 :(得分:2)

使用:

this.percentage

示例jsFiddle

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

Api:

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

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