web-dev-qa-db-ja.com

Chart.jsの数値形式

Chart.jsドキュメンテーション を調べたところ、数値の書式設定で何も見つかりませんでした(例)数値の書式 "#、###。00"から1,000.02

私もいくつかの基本的なテストを行いましたが、チャートはその値に非数値テキストを受け入れないようです

数千の区切り記号と固定小数点数を含むように値をフォーマットする方法を見つけた人はいますか?軸の値とチャートの値を書式設定したいと思います。

24
Ronald

Javascriptでの数値の書式設定のための組み込み機能はありません。最も簡単な解決策は このページのaddCommas関数 であることがわかりました。

その後、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;
}
21
Yacine B

数値をコンマ形式にするには、つまり3,443,440です。 tooltipTemplateでtoLocaleString()関数を使用するだけです。

tooltipTemplate: "<%= datasetLabel%>-<%= value.toLocaleString()%>"

16
Sumanth

Chart.js v2.5では、既存のソリューションが機能しませんでした。私が見つけた解決策:

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

numeral.js を使用しましたが、Yacineが提案するaddCommas関数などを使用できます。

10
andresgottlieb

値をフォーマットする関数を使用して、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) : "");
}
9
Fran Herrero

バージョン: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);
}
8
herohat

tooltipsを次のように 'option'に入れます:

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

https://github.com/chartjs/Chart.js/pull/16 からの参照。

5