RadarDataSet
        Inherits: BaseControl
A collection of RadarDataSetEntry drawn as a filled radar shape.
Properties
- 
          border_color(ColorValue) –The color of the dataset outline. 
- 
          border_width(Number) –The width of the dataset outline. 
- 
          entries(list[RadarDataSetEntry]) –The data points that compose this set. 
- 
          entry_radius(Number) –The radius of each entry. 
- 
          fill_color(ColorValue) –The color used to fill this dataset. 
- 
          fill_gradient(Gradient | None) –The gradient used to fill this dataset. 
Properties#
class-attribute
      instance-attribute
  
#
border_color: ColorValue = CYAN
The color of the dataset outline.
class-attribute
      instance-attribute
  
#
border_width: Number = 2.0
The width of the dataset outline.
class-attribute
      instance-attribute
  
#
entries: list[RadarDataSetEntry] = field(
    default_factory=list
)
The data points that compose this set.
class-attribute
      instance-attribute
  
#
entry_radius: Number = 5.0
The radius of each entry.
class-attribute
      instance-attribute
  
#
fill_color: ColorValue = CYAN
The color used to fill this dataset.
class-attribute
      instance-attribute
  
#
fill_gradient: Gradient | None = None
The gradient used to fill this dataset.
Takes precedence over fill_color.