较完整的使用介绍参考:https://blog.csdn.net/changyana/article/details/126281275
起因
今天使⽤echarts时发现官⽹⽰例图例部分并没有进⾏对齐,⼀上⼀下逼死强迫。。。
解决办法
textStyle: { // 添加
height: 10, // 关键在这个height设置
rich: {
a: {
// ...
},
b: {
// ...
},
c: {
// ...
}
}
legend: {
orient: 'vertical',
right: 10,
y: 'center',
icon: 'circle', // 添加
itemWidth: 10,
itemHeight: 10,
formatter: function(name) { // 添加
let total = 0
let target
for (let i = 0; i < data.length; i++) {
total += data[i].value
if (data[i].name === name) {
target = data[i].value
}
}
var arr = [
'{a|' + name + '}',
'{b|' + ((target / total) * 100).toFixed(2) + '%}',
'{c|' + target + '}'
]
return arr.join(' ')
},
textStyle: { // 添加
height: 10,
padding: [8, 0, 0, 0],
rich: {
a: {
fontSize: 15,
width: 110
},
b: {
fontSize: 15,
width: 70,
color: '#c1c1c1'
},
c: {
fontSize: 15
}
}
}
},