echarts Y轴只显示整数,或保留n位小数

yAxis: [
            {
                type: 'value',
                minInterval: 1//只显示整数
            }
        ],
axisLabel: { //保留一位小数
              formatter: function (value, index) {           
                  return value.toFixed(1);      
                 }                
           }

猜你喜欢

转载自www.cnblogs.com/caoxen/p/11248494.html