Nightingaleecharts 饼配置项内容和展示

配置项如下
      var colorList =["#f6d54a","#f69846","#44aff0","#45dbf7","#f845f1","#ad46f3","#5045f6","#4777f5"];
var colorListSub =['rgba(35,143,56,.5)', 'rgba(26,87,178,.5)', 'rgba(176,75,7,.5)', 'rgba(175,129,8,.5)'];
var waybillPrefix = ['国航1','国航2','国航3','国航4','国航5'],sumweight = [12,23,34,45,56],sumFlightNumber = [110,112,112,114,111];
option = {
    backgroundColor: '#113A71',
    legend: {
        orient: 'vertical',
        textStyle:{
            color:'#fff'
        },
        right:'10%',
        top:'25%',
        data:['1小时','4小时','12小时','24小时','48小时']
    },
    series: [
        {
            type:'pie',
            radius: [0, '35%'],
            roseType: 'radius',
            clockwise :false,
            z:10,
            itemStyle: {
                normal: {
                    color: function(params) {
                        // build a color map as your need.
                        return colorList[params.dataIndex]
                    },
                    shadowBlur: 20,
                    shadowColor: 'rgba(0, 0, 0, 0.3)'
                }
            },
            label: {
                normal: {
                   // formatter: '{b|{b}}\n{hr|}\n{d|{c}  ({d}%)}',
                    rich: {
                        b: {
                            fontSize: 12,
                            color: '#fff',
                            align: 'left',
                            padding: 4
                        },
                        hr: {
                            borderColor: '#12EABE',
                            width: '100%',
                            borderWidth: 2,
                            height: 0
                        },
                        d: {
                            fontSize: 12,
                            color: '#fff',
                            align: 'left',
                            padding: 4
                        },
                        c: {
                            fontSize: 12,
                            color: '#fff',
                            align: 'center',
                            padding: 4
                        }
                    }
                }
            },
          /*  label: {
                normal: {
                    formatter: function(params){
                         return params.name+':'+params.value+'件';
                    },
                    // backgroundColor: '#eee',
                }
            },*/
            
            labelLine: {
                normal: {
                    length: 50,
                    length2: 50,
                    lineStyle:{
                        width:2
                    }
                }
            },
            data:[
             /*   {value:300, name:'1小时'},
                {value:351, name:'4小时'},
                {value:300, name:'24小时'},
                {value:200, name:'12小时'},
                {value:51, name:'48小时'},*/
                {value:sumweight[0], name:''+waybillPrefix[0]+' \n货量:'+sumweight[0]+'吨 \n 架次:'+sumFlightNumber[0]+'架'},
                {value:sumweight[1], name:''+waybillPrefix[1]+' \n货量:'+sumweight[1]+'吨 \n 架次:'+sumFlightNumber[1]+'架'},
                {value:sumweight[2], name:''+waybillPrefix[2]+' \n货量:'+sumweight[2]+'吨 \n 架次:'+sumFlightNumber[2]+'架'},
                {value:sumweight[3], name:''+waybillPrefix[3]+' \n货量:'+sumweight[3]+'吨 \n 架次:'+sumFlightNumber[3]+'架'},
                {value:sumweight[4], name:''+waybillPrefix[4]+' \n货量:'+sumweight[4]+'吨 \n 架次:'+sumFlightNumber[4]+'架'},
                
            ]
        },
    ]
};
    
截图如下