yAxis: { min:0, max:4, axisLabel:{ formatter: function (value) { var texts = []; if (value <=60) { texts.push('差'); } else if (value<= 75) { texts.push('一般'); } else if(value<= 85){ texts.push('良好'); } else{ texts.push('优秀'); } return texts; } } }
yAxis: { min:0, max:4, axisLabel:{ formatter: function (value) { var texts = []; if (value <=60) { texts.push('差'); } else if (value<= 75) { texts.push('一般'); } else if(value<= 85){ texts.push('良好'); } else{ texts.push('优秀'); } return texts; } } }