0
0

Highcharts で数値をカンマ区切りで表記するオプション指定

Last updated at Posted at 2024-02-06

ググった際に最適解に辿り着けないので備忘録
Highcharts.setOptions メソッドで thousandsSep, を指定する

Highcharts.setOptions({
  global: {
    useUTC: false,
  },
  lang: {
    decimalPoint: '.',
    thousandsSep: ',',
  },
});

Highcarts API リファレンス

0
0
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
0
0