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.

53 lines
1.4 KiB

3 years ago
// 饼图
3 years ago
export default function pieOption(color=[],data=[],){
3 years ago
return{
tooltip: {
trigger: 'item'
},
// 注释字体样式
3 years ago
legend: {
orient: 'vertical',
top:16,
left:170,
itemWidth: 10,//data图标大小
itemHeight: 10,
itemGap: 50//图标之间间距
},
3 years ago
// 环形统计图样式
series: [
{
// bottom:68,
// right:6,
3 years ago
// name: name,
3 years ago
type: 'pie',
radius: ['66', '40'],
avoidLabelOverlap: false,
itemStyle: {
// borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
// 点击弹出提示位置
label: {
3 years ago
show: false,
3 years ago
position: 'center'
},
color:color,
//点击弹出提示样式
3 years ago
emphasis: {
3 years ago
label: {
3 years ago
show: true,
3 years ago
fontSize: '40',
3 years ago
fontWeight: 'bold'
}
},
3 years ago
labelLine: {
show: false
},
// 环形数据
data: data
}
]
}
}