任务完成进度echarts 球配置项内容和展示

配置项如下
      data7 = [0.64,0.64,0.64];
option = {
    backgroundColor:'#050038',
    title:{
        text:'任务完成进度',
        textStyle:{
            //fontWeight:'normal',
            fontSize:24,
            color:'white',
        },
    },
    series:[
        {
            type:'liquidFill',
            radius:'45%',
            center:['50%','50%'],
            data:data7,
            backgroundStyle:{
                borderWidth:1,
                color:'rgb(225,0,225)',
            },
            color:['yellow','pink','blue'],
            label:{
                normal:{
                    formatter:(data7[0]*100).toFixed(2)+'%',
                    textStyle:{
                        fontSize:25,
                    },
                },
            },
            outline:{
                show:true,
            }

        },
        {
            type:'pie',
            center:['50%','50%'],
            radius:['50%','52%'],
            hoverAnimation:false,
            data:[
                {
                    name:'',
                    value:data7[0]*100,
                    labelLine:{
                        show:false
                    },
                    itemStyle:{
                        color:'#5886f0',
                    }
                },
                {
                    name:'',
                    value:0.5,
                    labelLine:{
                        show:false
                    },
                    itemStyle:{
                        color:'#5886f0',
                        borderColor:"#5886f0",
                        borderWidth:8,
                    },
                },
                {
                    name:'',
                    value:0.3,
                    labelLine:{
                        show:false
                    },
                    itemStyle:{
                        color:'#5886f0',
                    },
                    
                },
                {
                    name: '',
                    value: 99.2-data7[0]*100,
                    itemStyle: {
                        color: '#050038',
                    },
                    label: {
                        show: false,
                    },
                    labelLine: {
                        show: false,
                    },
                },
            ]

        }
    ]
};

    
截图如下