var myChart = echarts.init(document.getElementById('arightboxbott'));
option = {
color: [{
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [{
offset: 0,
color: '#2C8179'
}, {
offset: 1,
color: '#18C4B9'
}],
global: false
}, {
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [{
offset: 0,
color: '#ACBF95'
}, {
offset: 1,
color: '#7CBF2B'
}],
global: false
}, {
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [{
offset: 0,
color: '#508097'
}, {
offset: 1,
color: '#1C3979'
}],
global: false
}, {
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [{
offset: 0,
color: '#4d72d9'
}, {
offset: 1,
color: '#75489F'
}],
global: false
}],
title: [{
top: 125,
left: 80,
textStyle: {
fontSize: 18,
color: 'rgba(255,255,255,.6)'
},
text: '楼栋\n信息'
},{
top: 125,
right: 80,
textStyle: {
fontSize: 18,
color: 'rgba(255,255,255,.6)'
},
text: '业主\n信息'
}],
tooltip: {
trigger: 'item',
formatter: '{a} <br/>{b}: {c} ({d}%)'
},
legend: {
left: 10,
textStyle: {
fontSize: 10,
color: 'rgba(255,255,255,.7)'
},
data: ['A区业主', 'B区业主', 'A区楼栋', 'B区楼栋']
},
grid: {
containLabel: true
},
series: [{
name: '访问来源',
type: 'pie',
radius: ['45%', '65%'],
center: ['75%', '55%'],
avoidLabelOverlap: false,
label: {
position: 'inner',
formatter: '{b} {c} 户'
},
emphasis: {
label: {
show: true,
fontSize: '30',
fontWeight: 'bold'
}
},
labelLine: {
show: false
},
data: [
{ value: 2335, name: 'A区业主' },
{ value: 810, name: 'B区业主' },
]
}, {
name: '访问来源',
type: 'pie',
radius: ['45%', '65%'],
center: ['25%', '55%'],
avoidLabelOverlap: false,
label: {
position: 'inner',
formatter: '{b} {c} 栋'
},
emphasis: {
label: {
show: true,
fontSize: '30',
fontWeight: 'bold'
}
},
labelLine: {
show: false
},
data: [
{ value: 22, name: 'A区楼栋' },
{ value: 9, name: 'B区楼栋' }
]
}]
};
myChart.setOption(option);