标签当中选择自定义显示
文档链接:https://help.fanruan.com/finereport/doc-view-4370.html
显示值+百分比(效果如下图):
function() {
var points = this.series.points; //获取当前系列所有的数据点
var total = 0;
for (var i = 0, len = points.length; i < len; i++) {
total += points[i].value; //求分类下的系列和
}
return this.value + '<br>'+FR.contentFormat(this.value/total, '#0%'); //求占比
}