配置项如下
app.title = '环形图';
var xd=930;
var yd = 150;
option = {
tooltip: {
trigger: 'item',
formatter: "{a} <br/>{b}: {c} ({d}%)"
},
legend: {
orient: 'vertical',
x: 'left',
data:['直接访问','邮件营销','联盟广告','视频广告','搜索引擎']
},
series: [
{
name:'访问来源',
type:'pie',
color:["#ccc",'#f00'],
radius: ['45%', '58%'],
hoverAnimation:false,
avoidLabelOverlap: false,
markPoint:{
tooltip:{
show:false
},
symbol: 'triangle',
symbolSize: 15,
symbolRotate:90,
itemStyle: {
normal: {
color: '#000'
}
},
data: [{
x: xd,
y:yd
}],
},
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:xd, name:'直接访问', },
{value:yd, name:'邮件营销'},
]
},
{
name:'访问来源',
type:'pie',
color:['#fcc','#ccc','#233'],
radius: ['60%', '80%'],
hoverAnimation:false,
avoidLabelOverlap: false,
label: {
normal: {
show: false,
position: 'center'
},
emphasis: {
show: true,
textStyle: {
fontSize: '30',
fontWeight: 'bold'
}
}
},
labelLine: {
normal: {
show: false
}
},
data:[
{value:335, name:'直接访问3'},
{value:310, name:'邮件营销3'},
]
}
]
};