annotation 썸네일형 리스트형 리액트로 도넛모양차트 하이차트, +annotation 옵션 구현 import { useEffect, useRef } from 'react'; import styled from '@emotion/styled'; import { DashboardData } from '~/interfaces/Dashboard'; import Highcharts from 'highcharts'; import HighchartsReact from 'highcharts-react-official'; interface Props { items: DashboardData[]; title: string; total:number; } function PieChart({ items, title,total }: Props) { const randomColors = items .map((item) => {.. 더보기 이전 1 다음