舆论分布图echarts 饼配置项内容和展示

配置项如下
      app.title = '嵌套环形图';

option = {
    tooltip: {
        trigger: 'item',
        formatter: "{a} <br/>{b}: {c} ({d}%)"
    },
    legend: {
        orient: 'vertical',
        x: 'left',
        data: ['新浪微博', '百度贴吧', '天涯论坛']
    },
    series: [{
        name: '访问来源',
        type: 'pie',
        selectedMode: 'single',
        radius: [0, '30%'],

        label: {
            normal: {
                position: 'inner'
            }
        },
        labelLine: {
            normal: {
                show: false
            }
        },
        data: [{
            value: 109,
            name: '正向评论',
            selected: true
        }, {
            value: 12,
            name: '中立'
        }, {
            value: 273,
            name: '负向评论'
        }]
    }, {
        name: '访问来源',
        type: 'pie',
        radius: ['40%', '55%'],

        data: [ {
            value: 4,
            name: '新浪微博正向评论'
        }, {
            value:22,
            name: '百度贴吧正向评论'
        }, {
            value:20,
            name: '天涯论坛正向评论'
            
        }, {
            value:118,
            name: '新浪微博负向评论'
        }, {
            value:100,
            name: '百度贴吧负向评论'
        }, {
            value:70,
            name: '天涯论坛负向评论'
        }, {
            value:10,
            name: '新浪评论中立评论'
        }, {
            value:6,
            name: '百度贴吧中立评论'
        }, {
            value:10,
            name: '天涯论坛中立评论'
        
        
        
        
        }]
    }]
};
    
截图如下