在option的series里面添加label
series: [
{
name: 'Access From',
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
itemStyle: {
borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
// 主角代码开始分割线-----------
label: {
normal: {
show: true,
position: 'center',
color: '#fff',
formatter: `{total|${200}}\n{active|总数}`,//写死的200可改为别的数值
rich: {
total: {
fontSize: 20,
fontFamily: "微软雅黑",
color: '#000'
},
active: {
// fontFamily : "微软雅黑",
fontSize: 10, color: '#000',
lineHeight: 30,
},
}
},
},
// 主角代码结束分割线-----------
emphasis: {
label: {
show: true,
fontSize: 40,
fontWeight: 'bold'
}
},
labelLine: {
show: false
},
data: dataList//数据
}
]
代码结构(直接拿官方文档的基础参数)
效果