解决状态排名echarts 饼配置项内容和展示

配置项如下
      option = {
    backgroundColor: '#2c343c',

    title: {
        text: '解决状态排名',
        left: 'center',
        top: 20,
        textStyle: {
            color: '#ccc'
        }
    },

    tooltip : {
        trigger: 'item',
        formatter: "{a} <br/>{b} : {c} ({d}%)"
    },

    visualMap: {
        show: false,
        min: 80,
        max: 600,
        inRange: {
            colorLightness: [0, 1]
        }
    },
    series : [
        {
            name:'解决状态',
            type:'pie',
            radius : '55%',
            center: ['50%', '50%'],
            data:[
                {value:335, name:'P1'},
                {value:310, name:'P2'},
                {value:274, name:'P3'},
                {value:235, name:'P4'}
            ].sort(function (a, b) { return a.value - b.value}),
            roseType: 'angle',
                       label: {
                normal: {
                   formatter: "{b} : {c} ({d}%)"
                }
            },

            labelLine: {
                normal: {
                    lineStyle: {
                        color: 'rgba(255, 255, 255, 0.3)'
                    },
                    smooth: 0.2,
                    length: 10,
                    length2: 20
                }
            },
            itemStyle: {
                normal: {
                    color: '#c23531',
                    shadowBlur: 200,
                    shadowColor: 'rgba(0, 0, 0, 0.5)'
                }
            },

            animationType: 'scale',
            animationEasing: 'elasticOut',
            animationDelay: function (idx) {
                return Math.random() * 200;
            }
        }
    ]
};
    
截图如下