Files
dvcp_v2_webapp/components/AiEchart/template/pie/pieChart1.js

30 lines
482 B
JavaScript
Raw Normal View History

2022-05-11 09:46:56 +08:00
export default {
legend: {
2022-05-13 14:55:07 +08:00
right: 20,
top: 'middle',
2022-05-11 09:46:56 +08:00
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",
2023-03-31 15:17:34 +08:00
radius: ['60%', '70%'],
2022-05-11 09:46:56 +08:00
minShowLabelAngle: 10,
2023-03-31 15:17:34 +08:00
itemStyle: {
borderColor: 'rgba(128, 128, 128, 0.1)',
},
2022-05-11 09:46:56 +08:00
label: {
show: false
}
}
}