Documentation / @ripl/charts / PolarScatterSeriesOptions
Interface: PolarScatterSeriesOptions<TData>
Defined in: charts/src/charts/polar-scatter.ts:74
Configuration for an individual polar scatter series.
Type Parameters
| Type Parameter |
|---|
TData |
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
angle | NumericAccessor<TData> | Angular position in degrees (0° at the top, increasing clockwise). | charts/src/charts/polar-scatter.ts:82 |
color? | string | Optional colour override for the series (otherwise a palette colour is generated). | charts/src/charts/polar-scatter.ts:78 |
id | string | Unique identifier for the series. | charts/src/charts/polar-scatter.ts:76 |
label | string | Display label for the series (shown in the legend and tooltips). | charts/src/charts/polar-scatter.ts:80 |
maxRadius? | number | Largest marker radius in pixels when sizeBy is set. Defaults to 14. | charts/src/charts/polar-scatter.ts:90 |
minRadius? | number | Smallest marker radius in pixels when sizeBy is set. Defaults to 4. | charts/src/charts/polar-scatter.ts:88 |
radius | NumericAccessor<TData> | Radial position (distance from the centre), on the radial value scale. | charts/src/charts/polar-scatter.ts:84 |
sizeBy? | number | NumericAccessor<TData> | Optional accessor whose value scales each marker's size between minRadius and maxRadius. | charts/src/charts/polar-scatter.ts:86 |