highchart with numberformat (unit)

a 夏天 提交于 2019-12-24 16:28:59

问题


I'm using Highcharts to generate a line chart.

And I'm having a problem with numberFormat:

var test = 15975000;
numberFormat(test, 0,',','.');

the result is: 15.975.000

But I want to transform 1000 to 1k, 100000 to 100k, 1000000 to 1m like this. How can I deal with this problem?


回答1:


numberFormat is available in Highcharts object.

Highcharts.numberFormat(test, 0,',','.');

Example http://jsfiddle.net/DaBYc/1/

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



回答2:


Write your own formatter (see this example).

formatter: function() {
  result = this.value;
  if (this.value > 1000000) { result = Math.floor(this.value / 1000000) + "M" }
  else if (this.value > 1000) { result = Math.floor(this.value / 1000) + "k" }
  return result;
}

See also: How to format numbers similar to Stack Overflow reputation format




回答3:


You just need to do that:

                labels: {
                formatter: function() {
                     return abbrNum(this.value,2); // Need to call the function for each value shown by the chart
                }
            },

Here is the Function used to transform the data to be inserted on javascript:

    function abbrNum(number, decPlaces) {
    // 2 decimal places => 100, 3 => 1000, etc
    decPlaces = Math.pow(10,decPlaces);

    // Enumerate number abbreviations
    var abbrev = [ "k", "m", "b", "t" ];

    // Go through the array backwards, so we do the largest first
    for (var i=abbrev.length-1; i>=0; i--) {

        // Convert array index to "1000", "1000000", etc
        var size = Math.pow(10,(i+1)*3);

        // If the number is bigger or equal do the abbreviation
        if(size <= number) {
             // Here, we multiply by decPlaces, round, and then divide by decPlaces.
             // This gives us nice rounding to a particular decimal place.
             number = Math.round(number*decPlaces/size)/decPlaces;

             // Handle special case where we round up to the next abbreviation
             if((number == 1000) && (i < abbrev.length - 1)) {
                 number = 1;
                 i++;
             }

             // Add the letter for the abbreviation
             number += abbrev[i];

             // We are done... stop
             break;
        }
    }

    return number;
}

Hope this works =)



来源:https://stackoverflow.com/questions/16019645/highchart-with-numberformat-unit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!