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