Highcharts: Format all numbers with comma?

后端 未结 3 1565
情深已故
情深已故 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-14 00:04

    This can be set with the thousandSep (API) global option.

    Highcharts.setOptions({
        lang: {
            thousandsSep: ','
        }
    });
    

    See this JSFiddle example.

提交回复
热议问题