Radar chart
import { RadarChart } from '@arshad-shah/swift-chart';
const chart = new RadarChart('#chart', { theme: 'midnight' });chart.setData(skills, { x: 'axis', y: ['a', 'b'] });import { Radar } from '@arshad-shah/swift-chart/react';
<Radar data={skills} mapping={{ x: 'axis', y: ['a', 'b'] }} theme="midnight" height={360}/>Reference
- Class:
RadarChart - React component:
Radar