echarts 柱状配置项内容和展示

配置项如下
       var option = {
    tooltip: {
        trigger: 'item',
        formatter: "{b} <br/>{a}: {c}行"
    },
          grid: {
            left: '3%',
            right: '4%',
            bottom: '1%',
            top:'20%',
            containLabel: true
          },
          legend: {
              show: false
          },
          xAxis: {
            type: 'category',
           data: ['1号','2号','3号','4号','5号','6号','7号','8号','9号','10号','11号','12号','13号','14号','15号','16号','17号','18号','19号','20号','21号','22号','23号','24号','25号','26号','27号','28号','29号','30号','31号'],
            axisLine: {
              lineStyle: {
                color: '#666666'
              }
            },
            axisTick: {
              show: false
            },
          
          },

          yAxis: {
            show: false,
            type: 'value',
            name: '个',
            axisLine: {
              lineStyle: {
                color: 'white'
              }
            },
            axisTick: {
              show: false
            },
            splitLine: {
              show: false,
            },
            axisLabel: {}
          },
          series: [{
            name: '增长',
            type: 'bar',
            barWidth: '30%',
            itemStyle: {
              color: '#006CED'
            },
            data: [100, 120, 80, 123, 96, 89, 152, 114, 120, 119,50,60,70,80,9,10,100,200,50,80,90,70,60,90,300,200,10,60,80,200,40,70]
          }]
        }
    
截图如下