代码在这里:
label: {
normal: {
textStyle: {
color: '#ccc'
}
}
},
labelLine: {
normal: {
lineStyle: {
color: '#ccc'
},
smooth: 0.2,
length: 10,
length2: 20
}
},
属性2(需要注意的部分都写在代码的注释里了):
option = {
title : {
text: '某站点用户访问来源',
subtext: '纯属虚构',
x:'center'
},//位于表上的标题
tooltip : {
trigger: 'item',//,类型分为item和axis,axis是坐标指示器
formatter: "{a} <br/>{b} : {c} ({d}%)"
},
//这里的a是series里的name,b是data中的name,c是data中的value,d是所占百分比
legend: {
orient: 'vertical',
left: 'left',
data: ['直接访问','邮件营销','联盟广告','视频广告','搜索引擎']
},//对应色块表达什么,会在left的位置显示色块+data[n]
series : [
{
name: '访问来源',
type: 'pie',
radius : '55%',
center: ['50%', '60%'],
data:[
{value:335, name:'直接访问'},
{value:310, name:'邮件营销'},
{value:234, name:'联盟广告'},
{value:135, name:'视频广告'},
{value:1548, name:'搜索引擎'}
],
itemStyle: {
emphasis: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
};
}
网友评论