echarts 柱状配置项内容和展示

配置项如下
      option = {
    color:['#8ccfff'],
    legend:{
        
    },
    tooltip:{
        show:true
    },
    xAxis: {
        
    },
    label:{
       
    }
    ,
    yAxis: {
        type: 'category',
        data: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10']
    },
    series: [{
        data: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100],
        type: 'bar',
        barWidth:20,
    }]
};

    
截图如下