option = {
tooltip: {
trigger: 'item'
},
legend: {
top: '5%',
left: 'center'
},
series: [
{
type: 'pie',
radius: ['58%', '80%'],
silent: true,
legendHoverLink: false,
hoverAnimation: false,
z: 4,
label: {
normal: {
show: false,
},
},
data: [
{
value: 1,
itemStyle: {
// color: 'rgba(255,255,255,0.15)'
color: {
type: 'radial',
x: 0.5,
y: 0.5,
r: 1,
colorStops: [
{
offset: 0.39, color: 'rgba(255,255,255,0.05)' // 0% 处的颜色
},
{
offset: 0.43, color: 'rgba(255,255,255,0.35)' // 0% 处的颜
},
{
offset: 0.44, color: 'rgba(255,255,255,.35)' // 0% 处的颜色
},
{
offset: 0.48, color: 'rgba(255,255,255,0.1)' // 100% 处的颜色
}
],
global: false // 缺省为 false
}
}
}],
},
{
name: 'Access From',
type: 'pie',
radius: ['58%', '80%'],
avoidLabelOverlap: false,
label: {
show: false,
position: 'center'
},
emphasis: {
label: {
show: true,
fontSize: 40,
fontWeight: 'bold'
}
},
labelLine: {
show: false
},
data: [
{ value: 1048, name: 'Search Engine' },
{ value: 735, name: 'Direct' },
{ value: 580, name: 'Email' },
{ value: 484, name: 'Union Ads' },
{ value: 300, name: 'Video Ads' }
]
}
]
};