ScatterChartSpot
ScatterChartSpot
#
Bases: BaseControl
A spot on a scatter chart.
page
#
The page (of type Page
or PageView
) to which this control belongs to.
parent
#
parent: BaseControl | None
The direct ancestor(parent) of this control.
It defaults to None
and will only have a value when this control is mounted (added to the page tree).
The Page
control (which is the root of the tree) is an exception - it always has parent=None
.
tooltip
#
tooltip: str | ScatterChartSpotTooltip = field(
default_factory=lambda: ScatterChartSpotTooltip()
)
Tooltip configuration for this spot.
x_error
#
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
#
y_error: Any | None = None
Determines the error range of the data point using
FlErrorRange
(which contains lowerBy and upperValue) for the Y
axis.