数字之间的空格数如果值超过1K

时间:2018-08-02 07:04:52

标签: highcharts

如何删除图表中数字之间的空格。我尝试使用pointFormat,但无法正常工作。请找到以下参考。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

请设置lang.thousandsSep参数等于""(空字符串值)。为了实现它,您可以通过Highcharts.setOptions()全局设置该参数的值。这是代码:

Highcharts.setOptions({
    lang: {
    thousandsSep: ""
  }
})

实时示例:https://jsfiddle.net/wm87L9zh/

API参考:https://api.highcharts.com/highcharts/lang.thousandsSep