하이차트 천단위 , 구분하기
우선 Highcharts.setOptions를 차트를 그리기 전에 설정하여 lang : thousandsSep: ',' lang 설정을 해준다.
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});
Highcharts.chart(container,
yAxis:[ {
gridLineWidth : 0,
max: yAxisMax,
startOnTick: false,
endOnTick: false,
tickInterval: 100,
labels : {
format: '{value:,.0f}',
},
opposite : true
} ]
이후 Y축에서 라벨에 포멧을 설정한다. format: '{value:,.0f}',
'하이차트' 카테고리의 다른 글
하이차트 Y축 동적 변경 (0) | 2018.12.11 |
---|