일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- design pattern
- websocket
- 백준
- 자바 공부
- 리액트
- JavaScript
- React JS
- 데이터모델링과마이닝
- 프로그래머스 완전탐색
- 디자인 패턴
- 자바
- 프로그래밍 언어론
- react hook
- useEffect
- react firebase
- 장고
- 자바스크립트
- useState
- codesandbox
- 리액트 훅
- react
- 코틀린
- 프로그래머스
- 컴퓨터 네트워크
- 코딩테스트 고득점 Kit 완전탐색
- 프로그래머스 자바
- NextJS
- Java
- vanillaJS
- 코딩테스트 고득점 Kit
Archives
- Today
- Total
기록하는 개발자
[React] React에서 chartJs data label 추가하기 본문
728x90
https://mingmeng030.tistory.com/266
기존에 적용한 chartjs에 data label이 바로 보이도록 추가하고 싶은 경우가 있다.
default 로는 아래처럼 data label이 보이지 않다가
마우스가 hover 되었을 때 그래프 위에 툴팁으로 뜬다.
만약 위와 달리 아래처럼 hover 없이도 data label이 고정되어 보이게 하고 싶다면 어떻게 해야할까?
chartjs-plugin-datalabels 이라는 plugin 을 설치한다.
npm install chartjs-plugin-datalabels --save
chartjs 라이브러리를 사용하는 컴포넌트 상단에 plugin을 import 한다.
import ChartDataLabels from "chartjs-plugin-datalabels";
기존 코드의 option > plugins 내부에 datalabels 를 작성한다.
chartRef.current = new Chart(ctx, {
plugins: [ChartDataLabels],
type: "bar",
data: statisticsData,
options: {
responsive: false,
plugins: {
legend: { ... },
datalabels: {
formatter: function (value) {
if (value == 0) return "";
else return value + "시간";
},
display: true,
color: "black",
anchor: "end",
align: "start",
},
},
indexAxis: "y",
scales: {
x: { ... },
y: { ... },
},
},
});
datalabels
datalabels: {
formatter: function (value) {
// data가 0인 경우 label을 표시하지 않는다.
if (value == 0) return "";
else return value + "시간";
},
display: true,
color: "black",
anchor: "end",
align: "start",
},
formatter : 위에서 data 로 넣어준 배열에서 필요한 값을 뽑아내 보여주고 싶은 형태로 조작한다.
예시 : 각 데이터의 index와 value를 함께 보여주는 formatter
formatter: function (value, context) {
// 각 데이터의 인덱스
var idx = context.dataIndex;
// 화면에 보여줄 텍스트
return context.chart.data.labels[idx] + value + '%';
},
display, color, anchor, align 이외에도 많은 option이 있으니 아래 공식 사이트를 참고하자.
https://chartjs-plugin-datalabels.netlify.app/guide/options.html#scriptable-options
728x90
'Web > React' 카테고리의 다른 글
React와 Vue (0) | 2024.03.05 |
---|---|
[React] React+typescript에서 엑셀(csv)다운로드 구현 (0) | 2023.04.12 |
[React] react-select를 사용해보자 (1) | 2023.04.07 |
[React] React+typescript에서 chartJs의 update() 사용법 (0) | 2023.04.07 |
[React] axios interceptor를 이용한 token refresh (1) | 2023.04.07 |