function(){ return this.name+"\n"+this.seriesName+":"+this.value+"万元";}
======================
具体可以参考
自定义地图标签和提示点位置-https://help.fanruan.com/finereport10.0/doc-view-1717.html
=====================
function() { var points = this.points; var total = '<div style="width:100%;background - color: #808080;color:white">'; total += '<div align=left style = "font-size:16px" > ' + this.name ; total += '<div align=left style = "font-size:13px" > ●' + points[0].seriesName + ': ' + FR.contentFormat(points[0].value, '') +'平方单位'+ '</div>'; total += '<div align=left style = "font-size:13px" > ●' + points[1].seriesName + ': ' + FR.contentFormat(points[1].value, '') +'数量单位'+ '</div>'; total += '<div align=left style = "font-size:13px" > ●' + points[2].seriesName + ': ' + FR.contentFormat(points[2].value, '') +'费用单位'+ '</div>'; return total; }