Files
dvcp_v2_webapp/components/AiEchart/template/pie/pieChart1.js
yanran200730 8309afbbd8 山东移动
2023-03-31 15:17:52 +08:00

32 lines
526 B
JavaScript

export default {
legend: {
right: 20,
top: 'middle',
orient: 'vertical',
textStyle: {color: "#fff", fontSize: 14}
},
grid: {
top: '0%',
left: '0%',
right: '0px',
bottom: '0%'
},
xAxis: {show: false},
yAxis: {show: false},
tooltip: {
},
series: {
type: "pie",
radius: ['60%', '70%'],
minShowLabelAngle: 10,
itemStyle: {
borderRadius: 4,
borderColor: 'rgba(128, 128, 128, 0.1)',
borderWidth: 2
},
label: {
show: false
}
}
}