Echarts中legend图例太多会出现与title重叠。
为了避免重叠的情况,可在legend.data中添加空字符串'',实现图例的换行
title : {
text: '50050',
subtext: '****人数',
x: 'center'//标题居中
},
tooltip : {
trigger: 'axis'
},
calculable : true,
legend: {
data:['','***人数','******人数','******人数','*****人数'],//在最前方添加空字符串,也可在中间需要换行的地方添加空字符串
x: 'center'//图例换行居中
},
也可对title的text添加换行符\n
原文作者技术博客:https://www.jianshu.com/u/ac4daaeecdfe
网友评论