无坐标柱状图echarts 柱状配置项内容和展示

配置项如下
      option = {
    width: 200,
    height: 200,
    xAxis: {
        type:'category',
        data:[2, 4, 5, 5, 2],
        show: false,
    },
    yAxis: {
        type: 'value',
        show: false
    },
    series: [{
        type: 'bar',
        itemStyle: {
            normal: {
                color:'#84c44b',
            }

        },
        barWidth: 10,
        data:[13,43,22,33,22]
    }]
}
    
截图如下