问题描述:

echarts 去掉 千位 逗号

 

 

问题解决:

echarts 去掉 千位 逗号

 

 

        yAxis: {
          type: 'value',
          name: yAxisName,
          axisLabel:{
              formatter:function(value){
                  return value+"";
              }
          }
        },

  

参考文档:

https://www.jianshu.com/p/194176cfd02b

相关文章: