关键代码:
legend:{
orient:'horizontal',
right:'auto',
bottom:0
}
2、显示 前面名称后面加百分比
关键代码:
//echarts饼图内部显示百分比设置
label: {
show: true,
position: "outside", //outside 外部显示 inside 内部显示
formatter: `{b}---{d}%`, //b 代表中文名称,c 代表数值 d代表百分比显示
color: "red", //颜色
fontSize: 12 //字体大小
},