1. 效果图
2. 代码
option = {
series: [
{
name: "",
type: "pie",
radius: ["40%", "50%"],//圆环大小
center: ["50%", "50%"],//图表的位置
avoidLabelOverlap: false,//是否启用防止标签重叠策略
hoverAnimation:false,//动画效果
label: {
show: false,
position: 'center',
formatter: '{d}%',// 显示百分比,
},
data: [
{ value: '20',
itemStyle: {
color: "green"
},
label:{
normal:{
show:true
}
}
},
{ value: '80',itemStyle: {
color: "orange"
} }
]
}
]
};