Skip to content

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 ​

PropertyTypeDescriptionDefined in
angleByNumericAccessor<TData>Angular position in degrees (0° at the top, increasing clockwise).charts/src/charts/polar-scatter.ts:100
color?stringOptional color override for the series (otherwise a palette color is generated).charts/src/charts/polar-scatter.ts:96
idstringUnique identifier for the series.charts/src/charts/polar-scatter.ts:94
labelstringDisplay label for the series (shown in the legend and tooltips).charts/src/charts/polar-scatter.ts:98
maxRadius?numberLargest marker radius in pixels when sizeBy is set. Defaults to 14.charts/src/charts/polar-scatter.ts:108
minRadius?numberSmallest marker radius in pixels when sizeBy is set. Defaults to 4.charts/src/charts/polar-scatter.ts:106
radiusByNumericAccessor<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