无坐标柱状图

描述:当前是关于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]
    }]
}