echarts 柱状配置项内容和展示

配置项如下
      option = {
    title : {
        text: '',
        subtext: ''
    },
    tooltip : {
        trigger: 'axis'
    },
    legend: {
        data:['蒸发量']
    },
    toolbox: {
        show : true,
        feature : {
            dataView : {show: true, readOnly: false},
            magicType : {show: true, type: ['line', 'bar']},
            restore : {show: true},
            saveAsImage : {show: true}
        }
    },
    calculable : true,
    xAxis : [
        {
            type : 'category',
            data : ['2015——2016学年第一学期','2015——2016学年第二学期','2016——2017学年第一学期','2016——2017学年第二学期','2017——2018学年第一学期']
        }
    ],
    yAxis : [
        {
            type : 'value'
        }
    ],
    series : [
        {
            name:'蒸发量',
            type:'bar',
            data:[20, 39, 37, 22, 26],
           
        }
    ]
};

    
截图如下