ApexChart
리액트에서 Apexchart를 이용하기 위해 설치를 해주자
npm install react-apexcharts apexcharts
import ApexCharts from 'react-apexcharts'
...
return (
<div>
<ApexCharts
// type : 차트의 유형
type: 'line'
// 차트에 표시하려는 데이터 (Array)
series: {[
{
name: "data",
// 만약 동적 데이터를 받는다면 아래처럼 표현 가능.
// data: data?.map(price => price.close) as number[]
data: [1, 2, 3, 4, 5]
}
]}
// 차트의 구성 옵션 (Object) ( 기본값 {})
options={{
theme: {
mode: "dark"
},
chart: {
width: 500,
height: 500
}
}}
/>
</div>)
Author And Source
이 문제에 관하여(ApexChart), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kirk0201/ApexChart저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)