饼图去掉折线和折线的提示文字
原代码
原饼图
修改代码
series: [
//数据序列
{
name: "我的任务",
type: "pie",
radius: "50%",
data: [
{ value: 735, name: "未完成", itemStyle: { color: "#ffdc60" } },
{ value: 484, name: "已完成", itemStyle: { color: "#ff915a" } }
],
// 去掉折线以及折线提示文字
label: {
normal: {
show: false
}
},
labelLine: {
normal: {
show: false
}
},
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: "rgba(0, 0, 0, 0.7)"
}
}
}
]
实现饼图
推荐阅读:
扫描二维码,在手机上阅读