echarts 柱状配置项内容和展示

配置项如下
      option = {
    tooltip: {},
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [0, 22],
        type: 'bar',
        barGap: '-100%',
        barMaxWidth: 20,
        itemStyle: {
            color: '#23a4f5'
        }
    }, {
        data: [22, 0],
        type: 'bar',
        barGap: '-100%',
        barMaxWidth: 20,
        itemStyle: {
            color: '#3cd1c0'
        }
    }]
};
    
截图如下