echarts 柱状配置项内容和展示

配置项如下
      option = {
   

    legend: {
        right: '26',
        textStyle: {
            color: '#9ba1dd',
            fontSize: 14,
             fontWeight :'bold',
        },
        itemWidth: 18,
        itemHeight: 18,
        itemGap: 25,
        icon: 'rect',
        data: ['进行中安全事件', '已处置安全事件']

    },
    yAxis: [{
        axisTick: {
            show: false
        },
        axisLine: {
            show: false,
        },
        axisLabel: {
            color: '#969cd6',
            fontWeight :'bold',
            fontSize: 14,
        },

        type: 'category',
        position: 'right',
        data: ['瑶瑶缴费', '手机银行', '对公银行', '直销银行', '个人网银']

    }],

    xAxis: [{
        show: false,
        axisTick: {
            show: false
        },
        type: 'value',
        name: '检查批次数',
        min: 0,
        max: 1300,
        inverse: true,
        axisLine: {
            show: false,
        },


    }],
    series: [{

            name: '进行中安全事件',
            align: 'left',
            type: 'bar',
            itemStyle: {
                normal: {
                    color: '#50faef'
                }
            },
            barWidth: '17',
            label: {
                normal: {
                    show: true,
                    position: 'left',
                    textStyle: {
                        color: '#969cd6'
                    }
                }
            },
            data: [457, 457, 789, 1244, 946],
        },


        {
            name: '已处置安全事件',
            align: 'left',
            type: 'bar',
            barGap: '99%',
            barWidth: '17',
            itemStyle: {
                normal: {
                    color: '#3dd17d'
                }
            },
            label: {
                normal: {
                    show: true,
                    position: 'left',
                    textStyle: {
                        color: '#969cd6'
                    }
                }
            },
            data: [347, 347, 654, 789, 897],
        },

    ]
};

    
截图如下