리액트로 radar chart 구현하기, 변형하기 (chart.js)
Radar chart 구현 설치하기 npm install react-chartjs-2 chart.js import 하기 import { Chart as ChartJS, RadialLinearScale, PointElement, LineElement, Filler, Tooltip, Legend, } from "chart.js"; import { Radar } from "react-chartjs-2"; Data set export const data = { labels: [ "가", "나", "다", "라", "마", "바", ], datasets: [ { label: "그램그램", data: [1, 1, 1, 1, 1, 1], fill: true, // 선 안쪽 색상 채워짐 backgroundColor: ..
더보기
Filter 로 중복제거하기
"blogs": [ { "id": 1, "title": "My First Blog", "body": "Why do we use it?\nIt is a long established fact that a reader will be distracted by the readable content of a "author": "김코딩", "likes": 30 }, { "id": 2, "title": "Opening Party!", "body": "Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.", "author": "박해커", "likes": 100 }, { "id": 3, "title"..
더보기