diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/schedule/EgovAdminScheduleList.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/schedule/EgovAdminScheduleList.jsx index b1ec2ec..0044ef0 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/schedule/EgovAdminScheduleList.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/schedule/EgovAdminScheduleList.jsx @@ -203,7 +203,6 @@ function EgovAdminDashboard(props) { // 총 다운로드 수를 받아온 후 state 업데이트 const handleTotalDownloads = (sum) => { setTotalDownloads(sum); - console.log(sum); }; return ( diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/schedule/MonthlyBarChart.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/schedule/MonthlyBarChart.jsx index e77cf40..9fd7d79 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/schedule/MonthlyBarChart.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/schedule/MonthlyBarChart.jsx @@ -82,6 +82,7 @@ const MonthlyBarChart = ({ onDataFetched }) => { const [series, setSeries] = useState([ { + name: '다운로드수', data: fileDailyList } ]); @@ -100,11 +101,10 @@ const MonthlyBarChart = ({ onDataFetched }) => { setOptions((prevState) => ({ ...prevState, colors: [info], - // labels: ['PC', 'Mobile', 'Mobile', 'Mobile', 'Mobile', 'Mobile', 'Mobile'], xaxis: { labels: { style: { - colors: [primary, secondary, secondary, secondary, secondary, secondary, secondary] + colors: [secondary, secondary, secondary, secondary, secondary, secondary, secondary] } } },