[React] Apexcharts with React

찐새·2022년 8월 11일
0

React

목록 보기
6/21
post-thumbnail

install

npm install --save react-apexcharts apexcharts

usage

import Apexchart from "react-apexcharts";

function Chart() {
  return (
    <div>
      <Apexchart
    	type="line"
    	series={[
    		{
    		  name: "hello",
    		  data: [1, 2, 3, 4, 5],
			},
            {
              name: "bye",
              data: [11, 12, 13, 14, 15],
            },
              ]}
		options={{
               chart:{
                 height: 500,
                 width: 500,
                },
		}}/>
	  </div>
	);
}

export default Chart;

참고
APEXCHARTS Docs - react-charts

profile
프론트엔드 개발자가 되고 싶다

0개의 댓글