echarts y轴数值 1000写成1k

yAxis: {
        name: "(人)",
        nameLocation:'center',
        nameGap:32,
        nameTextStyle: {
            color: '#fff',
            fontSize: 16
        },
        axisLine: {
            lineStyle: {
                color: '#0177d4'
            }
        },
        axisLabel: {
            color: '#fff',
            fontSize: 16,
            formatter: function(value,index){
        var value;
        if (value >=1000) {
        value = value/1000+'k';
        }else if(value <1000){
        value = value;
        }
        return value
        }
        },
        splitLine: {
            show:false,
            lineStyle: {
                color: '#0177d4'
            }
        },
        interval:1000,
        max:5000
    },
  
        
    }, echarts y轴数值 1000写成1k_第1张图片

你可能感兴趣的:(echarts y轴数值 1000写成1k)