LoginSignup
10
12

More than 5 years have passed since last update.

Highcharts JSで数値に桁区切りのカンマを挿入する

Posted at

Highcharts JSを使っていてformatterを指定する場合などで数値を3桁区切りでカンマを打ちたいときは「Highcharts.numberFormat」を使えばよい。

積み上げグラフに百分率を出すなら以下のような感じ。

            plotOptions: {
                column: {
                    stacking: 'normal',
                    dataLabels: {
                        formatter: function() {
                            return Highcharts.numberFormat(this.y, 0, '', ',') +' ('+ Math.round(this.y*1000/this.point.stackTotal)/10 +'%)';
                        }
                    }
                }
            },
10
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
12