<aside> ✨
사이트 바로가기 : https://apexcharts.com/
</aside>
npm install --save react-apexcharts apexcharts
export default function Test() {
const state: ApexOptions = {
series: [
{
name: "데이터 내용",
data: [200, 100, 50, 80, 75, 200, 100],
},
],
};
const options: ApexOptions = {
theme: {
mode: "dark",
},
chart: {
type: "line",
zoom: {
enabled: false,
},
background: "transparent",
foreColor: colors.text,
},
dataLabels: {
enabled: false,
},
stroke: {
curve: "smooth",
width: 3,
},
colors: ["#db840b"],
grid: {
row: {
colors: ["transparent", "transparent"],
opacity: 0.5,
},
},
yaxis: { tickAmount: 3, min: 0 },
xaxis: {
categories: ["25", "50", "75", "100", "125", "150", "175"],
},
};
return (
<>
<ApexCharts
options={options}
series={state.series}
type="line"
width={"95%"}
height={"88%"}
/>
</>
);
}
theme: { mode: "dark"}
chart: {
type: "line",
zoom: {
enabled: false,
},
background: "transparent",
foreColor: colors.text
}
type: 차트 유형
zoom: 차트 확대
background: 차트 배경 색상