Skip to content

Documentation / @ripl/charts / PolarScatterChartOptions

Interface: PolarScatterChartOptions<TData> ​

Defined in: charts/src/charts/polar-scatter.ts:112

Options for configuring a PolarScatterChart.

Extends ​

Type Parameters ​

Type ParameterDefault type
TDataunknown

Properties ​

PropertyTypeDescriptionInherited fromDefined in
animation?boolean | Partial<ChartAnimationOptions>Animation configuration, or a boolean toggling all transitions. See ChartAnimationOptions.BaseChartOptions.animationcharts/src/core/chart.ts:128
autoRender?booleanWhether the chart renders automatically on construction and after every Chart.update. Defaults to true.BaseChartOptions.autoRendercharts/src/core/chart.ts:122
dataTData[]The dataset plotted across all series.-charts/src/charts/polar-scatter.ts:114
description?stringAccessible description announced by screen readers (sets the rendering element's ARIA label). Defaults to the title text.BaseChartOptions.descriptioncharts/src/core/chart.ts:132
format?ValueFormatInputFormat applied to radial values shown as text (tooltips + ring labels).-charts/src/charts/polar-scatter.ts:126
labels?ChartDataLabelsInputShow each marker's radial value beside it, just above by default (true/false, an anchor, or detailed label options). Off by default.-charts/src/charts/polar-scatter.ts:128
legend?ChartLegendInputLegend configuration. Shown by default when there is more than one series.-charts/src/charts/polar-scatter.ts:124
levels?numberNumber of concentric value rings. Defaults to 4.-charts/src/charts/polar-scatter.ts:120
max?numberThe value mapped to the outer radius (defaults to the largest radius value in the data).-charts/src/charts/polar-scatter.ts:118
padding?PaddingInputSpace reserved around the chart, in pixels. A single number applies to all four edges; a [top, right, bottom, left] tuple or a partial { top, right, bottom, left } object sets individual edges, leaving unspecified edges at the default. Defaults to 16.BaseChartOptions.paddingcharts/src/core/chart.ts:124
sectors?numberNumber of angular spokes/labels around the circle. Defaults to 8.-charts/src/charts/polar-scatter.ts:122
seriesPolarScatterSeriesOptions<TData>[]The series to render, each mapping the data to angle/radius positions.-charts/src/charts/polar-scatter.ts:116
theme?string | ThemeTheme for this chart: a registered name ('light'/'dark'/'auto'), or a Theme. Falls back to the module default (see setDefaultTheme).BaseChartOptions.themecharts/src/core/chart.ts:130
title?string | Partial<ChartTitleOptions>Chart title as plain text, or a ChartTitleOptions object for full control.BaseChartOptions.titlecharts/src/core/chart.ts:126