Skip to content

Scatter

const Scatter: ForwardRefExoticComponent<ScatterComponentProps & RefAttributes<ChartRef>>

Defined in: index.tsx:278

Scatter / bubble chart React component.

Use mapping.groupField to colour points by category and mapping.sizeField to vary point radius.

Example

<Scatter
data={points}
mapping={{ x: 'x', y: 'y', groupField: 'group', sizeField: 'size' }}
/>