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

27 lines
402 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",
minShowLabelAngle: 10,
radius: '50%',
label: {
show: false
}
}
}