RadarDataSet
A collection of RadarDataSetEntry drawn as a filled radar shape.
Inherits: BaseControl
Properties
border_color- The color of the dataset outline.border_width- The width of the dataset outline.entries- The data points that compose this set.entry_radius- The radius of each entry.fill_color- The color used to fill this dataset.fill_gradient- The gradient used to fill this dataset.
Properties
border_colorclass-attributeinstance-attribute
border_color: ColorValue = Colors.CYANThe color of the dataset outline.
border_widthclass-attributeinstance-attribute
border_width: Number = 2.0The 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.
fill_colorclass-attributeinstance-attribute
fill_color: ColorValue = Colors.CYANThe color used to fill this dataset.
fill_gradientclass-attributeinstance-attribute
fill_gradient: Optional[Gradient] = NoneThe gradient used to fill this dataset.
Takes precedence over fill_color.