ScatterChartSpot
Inherits: BaseControl
A spot on a scatter chart.
Properties
-
color(ColorValue | None) –Color of a spot.
-
label_text(str) –TBD
-
label_text_style(TextStyle) –TBD
-
point(bool | ChartPointShape | None) –TBD
-
radius(Number | None) –Radius of a spot.
-
render_priority(Number) –Sort by this to manage overlap.
-
selected(bool) –Whether to treat this spot as selected.
-
show_tooltip(bool) –Wether to show the tooltip.
-
tooltip(str | ScatterChartSpotTooltip) –Tooltip configuration for this spot.
-
visible(bool) –Determines wether to show or hide the spot.
-
x(Number | None) –The position of a spot on
Xaxis. -
x_error(Any | None) –Determines the error range of the data point using
-
y(Number | None) –The position of a spot on
Yaxis. -
y_error(Any | None) –Determines the error range of the data point using
Properties#
label_text_style
class-attribute
instance-attribute
#
TBD
render_priority
class-attribute
instance-attribute
#
render_priority: Number = 0
Sort by this to manage overlap.
selected
class-attribute
instance-attribute
#
selected: bool = False
Whether to treat this spot as selected.
show_tooltip
class-attribute
instance-attribute
#
show_tooltip: bool = True
Wether to show the tooltip.
tooltip
class-attribute
instance-attribute
#
tooltip: str | ScatterChartSpotTooltip = field(
default_factory=lambda: ScatterChartSpotTooltip()
)
Tooltip configuration for this spot.
visible
class-attribute
instance-attribute
#
visible: bool = True
Determines wether to show or hide the spot.
x_error
class-attribute
instance-attribute
#
x_error: Any | None = None
Determines the error range of the data point using
FlErrorRange
(which contains lowerBy and upperValue) for the X axis.
y_error
class-attribute
instance-attribute
#
y_error: Any | None = None
Determines the error range of the data point using
FlErrorRange
(which contains lowerBy and upperValue) for the Y axis.