echarts pie chart position setting

series: {
name: "Traffic accounting for distribution"
type: "pie",
radius: ["40%", "60%"],
center: [ "35%", "53%"], // this position adjustment image property
data: [
{Value: 14, name: "January report"},
{Value: 14, name: "February report"},
{Value: 16, name: "March report"}
],
label: {// remove pie chart indication polyline
normal: {
show: false,
position: 'inside',
formatter:"{b}:{d}%"
},
},
},

Guess you like

Origin www.cnblogs.com/xiaoxiaoxun/p/11295020.html