单饼图进度展示

描述:当前是关于Echarts图表中的 示例。
 
            var valueProccess = 50
colors = ['#389af4', '#dfeaff']
option = {
    xAxis: [{
        type: 'category',
        show: false,
        data: ['2019', '2020'],
    }],
        yAxis: {
        type: 'value',
        show: false
 
    },
    series: [
        {
        name: '',
        type: 'pie',
        clockWise: false,
        radius: [120, 150],
        itemStyle: {
            normal: {
                color: colors[0],
                shadowColor: colors[0],
                shadowBlur: 0,
                label: {
                    show: false
                },
                labelLine: {
                    show: false
                },
            }
        },
        hoverAnimation: false,
        data: [{
            value: valueProccess,
            label: {
                normal: {
                    formatter: function(params) {
                        return params.value + '%';
                    },
                    position: 'center',
                    show: true,
                    textStyle: {
                        fontSize: '20',
                        fontWeight: 'bold',
                        color: colors[0]
                    }
                }
            },
        }, {
            value: 100 - valueProccess,
            name: 'invisible',
            itemStyle: {
                normal: {
                    color: colors[1]
                },
                emphasis: {
                    color: colors[1]
                }
            }
        }]
    },
    
    
    {
        name: '直接访问',
        type: 'bar',
        barWidth: '10%',
        data: [{
                name: '低能见度1',
                value: '70',
                itemStyle: {
                    color: '#1F78B4'
                }
            },
            {
                name: '低能见度2',
                value: '50',
                itemStyle: {
                    color: '#A6CEE3'
                }
            }
         
        ]
    }
    
    
    
    ]
}