Scatter chart
import { ScatterChart } from '@arshad-shah/swift-chart';
const chart = new ScatterChart('#chart', { theme: 'midnight' });chart.setData(points, { x: 'x', y: 'y', group: 'group', size: 'size' });import { Scatter } from '@arshad-shah/swift-chart/react';
<Scatter data={points} mapping={{ x: 'x', y: 'y', group: 'group', size: 'size' }} theme="midnight" height={360}/>Reference
- Class:
ScatterChart - React component:
Scatter