例子echarts 饼配置项内容和展示

配置项如下
      option = {
    
    series: [{
        type: 'pie',
        radius: ['50%', '60%'],
        data: [{
            value: 220,
            itemStyle: {
                normal: {
                    color: 'transparent'
                }
            }
        }, {
           value: 180 
        }, {
            value: 199
        }, {
            value: 399
        }]
    },
    {
       type: 'pie',
        radius: ['50%', '70%'],
        data: [{
            value: 220,
            itemStyle: {
                normal: {
                    color: 'yellow'
                }
            }
        }, {
           value: 180 ,
           itemStyle: {
                normal: {
                    color: 'transparent'
                }
            }
        }, {
            value: 199,
            itemStyle: {
                normal: {
                    color: 'transparent'
                }
            }
        }, {
            value: 399,
            itemStyle: {
                normal: {
                    color: 'transparent'
                }
            }
        }] 
    }
     ]
};
    
截图如下