From f603702418c193ac403d71dbb3a24ce220b58bff Mon Sep 17 00:00:00 2001 From: parkyejin Date: Sat, 9 Mar 2024 00:33:20 +0900 Subject: [PATCH] =?UTF-8?q?fix(#27):=20RadialChart=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/trend/RadialChart.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/trend/RadialChart.tsx b/src/components/trend/RadialChart.tsx index 6a2ff91..4ecb05e 100644 --- a/src/components/trend/RadialChart.tsx +++ b/src/components/trend/RadialChart.tsx @@ -5,16 +5,16 @@ import Chart from "react-apexcharts"; import styled from "styled-components"; const RadialChart = () => { - const [series, setSeries] = useState([56, 44]); + const [series, setSeries] = useState([56, 44]); const options = { colors: [colors.main, colors.secondary], labels: [` 여성 ${series[0]}%`, ` 남성 ${series[1]}%`], legend: { show: true, - position: "left", + position: "left" as "left", floating: true, - fontSize: 14, + fontSize: "14px", fontFamily: "Noto Sans KR", fontWeight: 400, labels: { @@ -70,7 +70,7 @@ const RadialChart = () => { // }, // }, stroke: { - lineCap: "round", + lineCap: "round" as "round", }, };