Highcharts: Format all numbers with comma?

后端 未结 3 1571
情深已故
情深已故 2020-12-13 23:05

I\'m using Highcharts and I want to format all numbers showed anywhere in the chart (tooltips, axis labels...) with comma-separated thousands.

Otherwise, the default

3条回答
  •  盖世英雄少女心
    2020-12-13 23:49

    This way worked with me.

    I configured in yAxis option.

    yAxis: {
      labels: {
        formatter: function() {
            return Highcharts.numberFormat(this.value, 2);
        }
      }
    }
    

提交回复
热议问题