Skip to main content

RadarDataSet

A collection of RadarDataSetEntry drawn as a filled radar shape.

Inherits: BaseControl

Properties

Properties

border_colorclass-attributeinstance-attribute

border_color: ColorValue = Colors.CYAN

The color of the dataset outline.

border_widthclass-attributeinstance-attribute

border_width: Number = 2.0

The width of the dataset outline.

entriesclass-attributeinstance-attribute

entries: Annotated[list[RadarDataSetEntry], V.or_(V.length_eq(0), V.length_ge(3), message=(lambda _control, _field_name, value: f'entries can contain either 0 or at least 3 items, got {len(value)}'))] = field(default_factory=list)

The data points that compose this set.

entry_radiusclass-attributeinstance-attribute

entry_radius: Number = 5.0

The radius of each entry.

fill_colorclass-attributeinstance-attribute

fill_color: ColorValue = Colors.CYAN

The color used to fill this dataset.

fill_gradientclass-attributeinstance-attribute

fill_gradient: Optional[Gradient] = None

The gradient used to fill this dataset.

Takes precedence over fill_color.