echarts给formatter⽂字添加不同颜⾊
legend: {
x : 'center',
y : 'bottom',
icon: "circle",
itemWidth: 8, // 设置宽度
itemHeight: 8, // 设置⾼度
itemGap: 20,// 设置间距
orient: 'vertical',
top:'80%',
data:this.labels,
formatter: function(value) {
if (value.length > 4) {
return value.substring(0, 4) + "..." + '{a|'+ '| 20%' +'}' + '20';
} else {
return value + '{a|'+ '| 20%' +'}' + '20';
}
},
textStyle:{
fontSize:15,
//在rich中给formatter添加个别字体颜⾊
rich:{
textstylea:{
color:'#03a9f4',
padding:[0,10],
fontSize:15
},
},
},
tooltip: {
show: true
}
},
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论