巧用echarts中的rich属性自定义样式
作者:互联网
rich使用
在echarts中rich主要是用于设置用户自定样式,我们可以在title,legend中使用rich
在做项目的时候需要自定义echarts图中字体样式
但是这个地方数字和文字的颜色是一样的,但是UI设计的图需要文字是黑色字体,数字是根据环形图的颜色一样
这里就需要用到rich属性来自定义字体的颜色,如:
series: [{
type: 'pie',
radius: ['40%', '60%'],
center: ['35%', '50%'],
data: echartData,
labelLine: {
normal: {
length: 20,
length2: 20
},
},
label: {
normal: {
formatter: (params)=> {
let str =(`{value|${params.value}}`)+ '\n'+(`{name|${params.name}}`);
return str
},
borderWidth: 5,
borderRadius: 5,
// padding: [0, 86],
height: 70,
fontSize: 20,
show: true,
rich: {
value:{
fontSize:28,
},
name:{
color:'#666666',
fontSize:20,
},
}
}
},
}]
标签:20,name,自定义,fontSize,rich,params,echarts 来源: https://www.cnblogs.com/ylh188/p/15715149.html