Recharts는 React.js를 기반으로 한 데이터 시각화 라이브러리입니다.
Recharts는 다양한 차트 유형, 축 스케일링, 사용자 정의 라벨, 축 조절 및 기타 시각화 관련 기능을 제공합니다.
1. Recharts 설치하기
npm install recharts --save
2. Recharts 코드 적용하기
1) import
import {
ResponsiveContainer,
ComposedChart,
Line,
Bar,
XAxis,
YAxis,
CartesianGrid,
Tooltip,
Legend,
} from 'recharts';
2) component 추가
<ResponsiveContainer width="100%" height="100%">
<BarChart width={150} height={40} data={data}>
<Bar dataKey="uv" fill="#8884d8" />
</BarChart>
</ResponsiveContainer>
'프론트엔드로 가는 길 > react' 카테고리의 다른 글
12. react_redux 확실하게 정리하기 (0) | 2023.05.22 |
---|---|
11. DatePicker (0) | 2023.04.18 |
09. localStorage (0) | 2023.02.14 |
08. react_redux (0) | 2023.01.30 |
07. 자연스러운 메뉴 만들기 (0) | 2022.12.26 |