echarts 柱状配置项内容和展示

配置项如下
      option = {
     
    tooltip: {
        trigger: "axis",
        padding: [8, 10],
        backgroundColor: 'rgba(0,0,0,0.5)',
        axisPointer: {
            type: "shadow", 
            textStyle: {
                color: "#fff"
            }
        }
    },
    legend: {
        data: ['待审核', '审核通过', '退回申请'],
        align: 'left',
        right: 0,
        textStyle: {
            color: "#333",
            fontSize: 14,
            fontWeight: 200
        },
        itemWidth: 14,
        itemHeight: 14, 
    },
    grid: {
        left: '0',
        right: '0',
        bottom: '8%',
        top: '15%',
        containLabel: true
    },
    label: {
        show: true,
        position: 'top',
        color: '#333',
        fontSize: 14,
        fontWeight: 700
    },
    xAxis: [{
        type: 'category',
        offset: 10,
        data: ['建档', '变更', '年检', '注销'],
         
        axisLabel: {
            show: true,
            textStyle: {
                color: "#333",
                fontSize: 16,
                fontWeight: 200
            }
        },
    }],
    yAxis: [{
        type: 'value',
        name:"数量"
        
    }],
    series: [{
        name: '待审核',
        type: 'bar',
        data: [20, 34, 18, 14, 16],
        barWidth: 22, //柱子宽度
        barGap: 1, //柱子之间间距
        itemStyle: {
            normal: {
                color: '#0071c8',
                opacity: 1,
            }
        }
    }, {
        name: '审核通过',
        type: 'bar',
        data: [10, 24, 5, 24, 16],
        barWidth: 22,
        barGap: 1,
        itemStyle: {
            normal: {
                color: '#fdc508',
                opacity: 1,
            }
        }
    }, {
        name: '退回申请',
        type: 'bar',
        data: [7, 24, 18, 20, 6],
        barWidth: 22,
        barGap: 1,
        itemStyle: {
            normal: {
                color: 'red',
                opacity: 1,
            }
        }
    }]
};
    
截图如下