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.

41 lines
1.1 KiB

3 years ago
// 饼图
export default function circleOption(data=[]){
return{
tooltip: {
3 years ago
trigger: 'item',
backgroundColor: "#08182F",
color: "#fff",
borderColor: "#3373CC",
textStyle: {
color: "#fff", //设置文字颜色
fontSize: 9
},
extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;",
confine: true
3 years ago
},
series: [
{
bottom: 8,
3 years ago
right: 8,
3 years ago
type: 'pie',
3 years ago
radius: '100%',
3 years ago
avoidLabelOverlap: false,
itemStyle: {
// borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
// 点击弹出提示位置
label: {
show: false,
position: 'center'
},
labelLine: {
show: false
},
data: data
}
]
}
}