项目要求
echarts legend要求图标放在文字的右侧。
实现代码
可以通过align
来控制图标在左侧还是在右侧
legend: {
show: true,
left: '30',
align: 'right',
top: '0',
icon: 'rect',
itemWidth: 10,
itemHeight: 2,
textStyle: {
color: 'rgba(51, 51, 51, 1)'
},
data: ['实名认证', '合同签署']
},