30 lines
504 B
JavaScript
30 lines
504 B
JavaScript
|
|
export default {
|
||
|
|
legend: {
|
||
|
|
right: 0,
|
||
|
|
top: '30%',
|
||
|
|
orient: 'vertical',
|
||
|
|
textStyle: {color: "#fff", fontSize: 14}
|
||
|
|
},
|
||
|
|
grid: {
|
||
|
|
top: '0%',
|
||
|
|
left: '0%',
|
||
|
|
right: '0px',
|
||
|
|
bottom: '0%'
|
||
|
|
},
|
||
|
|
xAxis: {show: false},
|
||
|
|
yAxis: {show: false},
|
||
|
|
tooltip: {
|
||
|
|
backgroundColor: "rgba(14, 51, 111, 0.9)",
|
||
|
|
borderColor: "#1A6ABC",
|
||
|
|
textStyle: {color: "#fff"}
|
||
|
|
},
|
||
|
|
series: {
|
||
|
|
type: "pie",
|
||
|
|
minShowLabelAngle: 10,
|
||
|
|
radius: '50%',
|
||
|
|
label: {
|
||
|
|
show: false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|