Skip to content

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

PropertyTypeDescriptionDefined in
angleNumericAccessor<TData>Angular position in degrees (0° at the top, increasing clockwise).charts/src/charts/polar-scatter.ts:82
color?stringOptional colour override for the series (otherwise a palette colour is generated).charts/src/charts/polar-scatter.ts:78
idstringUnique identifier for the series.charts/src/charts/polar-scatter.ts:76
labelstringDisplay label for the series (shown in the legend and tooltips).charts/src/charts/polar-scatter.ts:80
maxRadius?numberLargest marker radius in pixels when sizeBy is set. Defaults to 14.charts/src/charts/polar-scatter.ts:90
minRadius?numberSmallest marker radius in pixels when sizeBy is set. Defaults to 4.charts/src/charts/polar-scatter.ts:88
radiusNumericAccessor<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