柱子

描述:当前是关于Echarts图表中的 柱状图 示例。
 
            option = {
  backgroundColor: 'white',
  grid: {
    top: '30%',
    left: '20%',
    right: '20%',
    bottom: '30%',
    containLabel: true,
  },

  tooltip: {
    trigger: "axis",
  },
  xAxis: {
    data: ['03-08', '03-09','03-10','03-11','03-12','03-14','03-15',],
    axisLine: {
      show: true,
      lineStyle: {
        color: '#E5E6EB',
      }
    },
    axisLabel: {
      color: '#86909C',
      fontSize: 12,
    },
  },
  yAxis: [{
    type: 'value',
    nameTextStyle: {
      color: "#000",
      fontSize: 14,
      padding: [0, 0,  0, 30]
    },
    axisLabel: {
      color: '#4E5969',
      fontSize: 12
    },
    splitLine: {     //网格线
          "show": false,
        }
  }],
  series: [
    {
      type: 'bar',
      barWidth: 20,
      data: [90, 70, 98,11,22,66,77,77],
      itemStyle: {
        normal: {
          color:"#468DFF"
        },
      },
    }
  ]
}