grade

描述:当前是关于Echarts图表中的 柱状图 示例。
 
            option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        type: 'category',
        data: ['数学','语文']
    },
    yAxis: {
        
    },
    
    
    series: [
    {
        type: 'bar',
        data: [30,40],
        // barGap: '-100%'
    }
    ]
};