| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 | 
var myChart = echarts.init(document.getElementById('arightboxbott'));option = {    color: [{        type: 'linear',        x: 0,        y: 0,        x2: 0,        y2: 1,        colorStops: [{            offset: 0,            color: '#2C8179' // 0% 处的颜色        }, {            offset: 1,            color: '#18C4B9' // 100% 处的颜色        }],        global: false // 缺省为 false    }, {        type: 'linear',        x: 0,        y: 0,        x2: 0,        y2: 1,        colorStops: [{            offset: 0,            color: '#ACBF95' // 0% 处的颜色        }, {            offset: 1,            color: '#7CBF2B' // 100% 处的颜色        }],        global: false // 缺省为 false    }, {        type: 'linear',        x: 0,        y: 0,        x2: 0,        y2: 1,        colorStops: [{            offset: 0,            color: '#508097' // 0% 处的颜色        }, {            offset: 1,            color: '#1C3979' // 100% 处的颜色        }],        global: false // 缺省为 false    }, {        type: 'linear',        x: 0,        y: 0,        x2: 0,        y2: 1,        colorStops: [{            offset: 0,            color: '#4d72d9' // 0% 处的颜色        }, {            offset: 1,            color: '#75489F' // 100% 处的颜色        }],        global: false // 缺省为 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: {            // show: false,            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: {            // show: false,            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);
 |