Chart.js数字格式

时间:2014-09-17 01:10:55

标签: javascript charts formatting number-formatting chart.js

我查看了Chart.js documentation并且没有找到任何有关数字格式的内容 ie)1,000.02来自数字格式“#,###。00”

我也做了一些基本的测试,似乎图表不接受非数字文本的值

有没有人找到一种方法来获取格式化为千位分隔符和固定小数位数的值?我想将图表中的轴值和值格式化。

6 个答案:

答案 0 :(得分:21)

Javascript中没有用于数字格式的内置功能。我发现最简单的解决方案是addCommas function on this page

然后,您只需将tooltipTemplate参数行从Chart.defaults.global修改为以下内容:

tooltipTemplate: "<%= addCommas(value) %>"

Charts.js将负责其余部分。

这里是addCommas功能:

function addCommas(nStr)
{
    nStr += '';
    x = nStr.split('.');
    x1 = x[0];
    x2 = x.length > 1 ? '.' + x[1] : '';
    var rgx = /(\d+)(\d{3})/;
    while (rgx.test(x1)) {
        x1 = x1.replace(rgx, '$1' + ',' + '$2');
    }
    return x1 + x2;
}

答案 1 :(得分:16)

对于逗号格式的数字,即3,443,440。你可以在tooltipTemplate中使用toLocaleString()函数。

tooltipTemplate:&#34;&lt;%= datasetLabel%&gt; - &lt;%= value.toLocaleString()%&gt;&#34;

答案 2 :(得分:9)

您可以使用Chart.defaults.global设置tooltipTemplate值,并设置格式化值:

tooltipTemplate : function(valueObj) {
            return formatNumber(valueObj.value, 2, ',',  '.');
}

这是格式化功能:

function formatNumber(number, decimalsLength, decimalSeparator, thousandSeparator) {
       var n = number,
           decimalsLength = isNaN(decimalsLength = Math.abs(decimalsLength)) ? 2 : decimalsLength,
           decimalSeparator = decimalSeparator == undefined ? "," : decimalSeparator,
           thousandSeparator = thousandSeparator == undefined ? "." : thousandSeparator,
           sign = n < 0 ? "-" : "",
           i = parseInt(n = Math.abs(+n || 0).toFixed(decimalsLength)) + "",
           j = (j = i.length) > 3 ? j % 3 : 0;

       return sign +
           (j ? i.substr(0, j) + thousandSeparator : "") +
           i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousandSeparator) +
           (decimalsLength ? decimalSeparator + Math.abs(n - i).toFixed(decimalsLength).slice(2) : "");
}

答案 3 :(得分:9)

在Chart.js v2.5中,现有的解决方案对我不起作用。我发现的解决方案:

options: {
            scales: {
                yAxes: [{
                    ticks: {
                        callback: function (value) {
                            return numeral(value).format('$ 0,0')
                        }
                    }
                }]
            }
        }

我使用了numeral.js,但你可以使用Yacine提出的addCommas函数,或其他任何东西。

答案 4 :(得分:8)

对于使用版本:2.5.0的用户,这里是@andresgottlieb解决方案的增强功能。有了这个,您还可以格式化图表工具提示中的金额,而不仅仅是'yAxes'中的'滴答'

    ...
    options: {
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero:true,
                    callback: function(value, index, values) {
                        return '$ ' + number_format(value);
                    }
                }
            }]
        },
        tooltips: {
            callbacks: {
                label: function(tooltipItem, chart){
                    var datasetLabel = chart.datasets[tooltipItem.datasetIndex].label || '';
                    return datasetLabel + ': $ ' + number_format(tooltipItem.yLabel, 2);
                }
            }
        }
    }

这是我正在使用的number_format()函数:

function number_format(number, decimals, dec_point, thousands_sep) {
// *     example: number_format(1234.56, 2, ',', ' ');
// *     return: '1 234,56'
    number = (number + '').replace(',', '').replace(' ', '');
    var n = !isFinite(+number) ? 0 : +number,
            prec = !isFinite(+decimals) ? 0 : Math.abs(decimals),
            sep = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep,
            dec = (typeof dec_point === 'undefined') ? '.' : dec_point,
            s = '',
            toFixedFix = function (n, prec) {
                var k = Math.pow(10, prec);
                return '' + Math.round(n * k) / k;
            };
    // Fix for IE parseFloat(0.55).toFixed(0) = 0;
    s = (prec ? toFixedFix(n, prec) : '' + Math.round(n)).split('.');
    if (s[0].length > 3) {
        s[0] = s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, sep);
    }
    if ((s[1] || '').length < prec) {
        s[1] = s[1] || '';
        s[1] += new Array(prec - s[1].length + 1).join('0');
    }
    return s.join(dec);
}

答案 5 :(得分:4)

tooltips放在“选项”中,如下所示:

options: {
  tooltips: {
      callbacks: {
          label: function(tooltipItem, data) {
              return tooltipItem.yLabel.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
          }
      }
  }
}

来自https://github.com/chartjs/Chart.js/pull/160的引用。