You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
800 B
32 lines
800 B
3 years ago
|
// 饼图
|
||
|
export default function circleOption(data=[]){
|
||
|
return{
|
||
|
tooltip: {
|
||
|
trigger: 'item'
|
||
|
},
|
||
|
series: [
|
||
|
{
|
||
|
bottom: 8,
|
||
|
right: 90,
|
||
|
type: 'pie',
|
||
|
radius: '90%',
|
||
|
avoidLabelOverlap: false,
|
||
|
itemStyle: {
|
||
|
// borderRadius: 10,
|
||
|
borderColor: '#fff',
|
||
|
borderWidth: 2
|
||
|
},
|
||
|
// 点击弹出提示位置
|
||
|
label: {
|
||
|
show: false,
|
||
|
position: 'center'
|
||
|
},
|
||
|
labelLine: {
|
||
|
show: false
|
||
|
},
|
||
|
data: data
|
||
|
}
|
||
|
]
|
||
|
|
||
|
}
|
||
|
}
|