Highchart - yAxis - 1,000应显示为1000

时间:2013-02-06 09:38:29

标签: highcharts

我在Highchart API中找不到我的问题的设置。

我在jsFiddle http://jsfiddle.net/qErT2/

上举了一个例子

如何将1,000换成1000?

Greetings

2 个答案:

答案 0 :(得分:2)

HighChart数字格式与PHP NUMBER FORMATS

相同

你可以在任何地方使用这种格式

for tooltip

tooltip: {
    formatter: function () 
    {
        return '<b>' + this.series.name + '</b><br/>' + this.x + ' - <b>' + Highcharts.numberFormat(this.y, 0,'',''); + '</b>';
    }
}

表示yAxis

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

YOUR EXAMPLE MODIFIED DEMO(工具提示)

AND UPDATED DEMO(工具提示和yAxis标签)

答案 1 :(得分:1)

查看lang选项http://api.highcharts.com/highcharts#lang,显然你可以使用Highcharts.numberFormat()http://api.highcharts.com/highcharts#Highcharts.numberFormat(),它可以在tooltip formater / label formatter中用来显示你需要的数字。

http://api.highcharts.com/highcharts#yAxis.labels.formatter