Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- reactjs
- 타입좁히기
- 반복줄이기
- 커스텀
- javascript
- 성능최적화
- const 단언문
- 리액트
- React Native
- react
- 누구나 자료구조와 알고리즘
- 폰트적용하기
- 제네릭
- returnType
- utilty type
- vue.js
- 2022
- React.js
- Chart.js
- 공통컴포넌트
- click and drag
- typescript
- JS console
- 개발콘텐츠
- TSDoc
- 타입스크립트
- CSS
- NonNullable
- 레이아웃쪼개기
- 티스토리꾸미기
Archives
- Today
- Total
몽땅뚝딱 개발자
[Chart.js] 차트 사이즈에 맞춰 폰트사이즈 변경하기 본문
이렇게 크기가 고정되면 레이블이 잘 보이지 않는 현상이 발생..
◽ 기존
font: {
size: 14,
family: 'Pretendard',
},
◽ 변경
font: function (context) {
const width = context.chart.width
const size = Math.round(width / 32)
return {
size: size,
family: 'Pretendard',
}
},
크기에 맞게 가독성있는 크기로 잘 변환되었다.

출처
Limit labels number on Chart.js line chart
I want to display all of the points on my chart from the data I get, but I don't want to display all the labels for them, because then the chart is not very readable. I was looking for it in the do...
stackoverflow.com
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Chart.js' 카테고리의 다른 글
[Chart.js] 차트의 datalabels에 아이콘 넣기 (1) | 2023.11.25 |
---|---|
[Chart.js] 양 축의 레이블을 차트 안쪽으로 넣기 (0) | 2022.10.02 |
Chart.js - chartjs-plugin-datalabels (0) | 2022.08.20 |
Chart.js - 비율이 아닌 부모의 크기에 맞춰 크기 조정하기 (0) | 2022.07.09 |
Chart.js - 그래프와 범례 간 간격 조정 (0) | 2022.07.09 |
Comments