自定义标签-https://help.fanruan.com/finereport10.0/doc-view-1882.html
「富文本」自定义标签或提示-https://help.fanruan.com/finereport10.0/doc-view-3724.html
——————————————————————————
CustomLabelSeriesSum.cpt.zip
// ------------- 更新内容:灵活运用!
function() {
var point = this;
var points = this.points;
var TT;
if (point == points[points.length - 1]) {
return "" ;
}else{
TT = (points[1].value / points[0].value)*100;
return TT.toFixed(2)+"%";
}
——————————————————————