怎么让饼图的系列名为黑色,而值与百分比为系列的颜色
自定义标签
function(){
return '<span style="color:black;"> '+this.seriesName+' </span><span style="color:'+this.color+';"> '+(this.percentage*100).toFixed(2)+'% </span>';
}
用这个
function(){ return '<span style="color:black;"> '+this.seriesName+' '+ '<span style="color:'+this.color+';"> '+this.value+' '+ '<span style="color:'+this.color+';"> '+(this.percentage*100).toFixed(2)+'% ';}