Documentation / @ripl/charts / PolarScatterSeriesOptions
Interface: PolarScatterSeriesOptions<TData> ​
Defined in: charts/src/charts/polar-scatter.ts:92
Configuration for an individual polar scatter series.
Type Parameters ​
| Type Parameter |
|---|
TData |
Properties ​
| Property | Type | Description | Defined in |
|---|---|---|---|
angleBy | NumericAccessor<TData> | Angular position in degrees (0° at the top, increasing clockwise). | charts/src/charts/polar-scatter.ts:100 |
color? | string | Optional color override for the series (otherwise a palette color is generated). | charts/src/charts/polar-scatter.ts:96 |
id | string | Unique identifier for the series. | charts/src/charts/polar-scatter.ts:94 |
label | string | Display label for the series (shown in the legend and tooltips). | charts/src/charts/polar-scatter.ts:98 |
maxRadius? | number | Largest marker radius in pixels when sizeBy is set. Defaults to 14. | charts/src/charts/polar-scatter.ts:108 |
minRadius? | number | Smallest marker radius in pixels when sizeBy is set. Defaults to 4. | charts/src/charts/polar-scatter.ts:106 |
radiusBy | NumericAccessor<TData> | Radial position (distance from the center), on the radial value scale. | charts/src/charts/polar-scatter.ts:102 |
sizeBy? | number | NumericAccessor<TData> | Optional accessor whose value scales each marker's size between minRadius and maxRadius. | charts/src/charts/polar-scatter.ts:104 |