function(){var points = this.points ; var total = '<div style="width:100%; background-color:#4e5c66;color:white">'; total +='<div align=left style="font-size:16px">'+this.name+'</div>'; for(var i = 0, len = points.length; i < len; i++) {total +='<div align=left style="font-size:13px">●'+points.seriesName+':'+FR.contentFormat(points.value, '#0.00')+'</div>';} return total;} 这只是显示区域、系列、值 |