关于Y轴单位的问题

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    grid:{
      left:'18%'  
    },
    yAxis: {
        type: 'value',
	    axisLabel:{
	    formatter:function(value,index){
	        if(value>1024*1024){
            	return parseInt(value/1024/1024)+"Mpbs";
	        }else if(value>1024){
            	return parseInt(value/1024)+"kpbs";
	        }else{
	            return parseInt(value)+"bps"
	        }
	    
	      }
           },
    },
    series: [{
        type: 'line',
        data:[288320, 342342, 43511, 344534, 454290, 4343330, 324310]
    }]
};