echart饼图

this.categoryOptions = {
title: [{
text: `${this.radioSelect}分布`,
textStyle: {
fontSize: 14,
color: '#666'
},
left: 20,
top: 20
}, {
text: '累计订单量',
subtext: total,
x: '34.5%',
y: '42.5%',
textStyle: {
fontSize: 14,
color: '#999'
},
subtextStyle: {
fontSize: 28,
color: '#333'
},
textAlign: 'center'
}],
series: [{
name: '品类分布',
type: 'pie',
data: chartData,
label: {
normal: {
show: true,
position: 'outter',
formatter: function (params) {
return params.data.legendname
}
}
},
center: ['35%', '50%'],
radius: ['45%', '60%'],
labelLine: {
normal: {
length: 5,
length2: 3,
smooth: true
}
},
clockwise: false,
itemStyle: {
borderWidth: 4,
borderColor: '#fff'
}
}],
legend: {
type: 'scroll',
orient: 'vertical',
height: 250,
left: '70%',
top: 'middle',
textStyle: {
color: '#8c8c8c'
}
},
tooltip: {
trigger: 'item',
formatter: function (params) {
const str = params.seriesName + '<br />' +
params.marker + params.data.legendname + '<br />' +
'数量:' + params.data.value + '<br />' +
'占比:' + params.data.percent + '%'
return str
}
}
}版权声明:本文为jieweiwujie原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。