方法一:
function(){
return this.name+"<br>"+this.seriesName+":"+FR.contentFormat(this.value/10000, '#0.00')+"万";
}
方法二:
return this.name+"<br>"+this.seriesName+":"+(this.value/10000).toFixed(2)+"万";
你在数据集里 round(字段/10000,2) 可以实现保留两位小数