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
) –TBD
-
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
X
axis. -
x_error
(Any | None
) –Determines the error range of the data point using
-
y
(Number | None
) –The position of a spot on
Y
axis. -
y_error
(Any | None
) –Determines the error range of the data point using
Properties#
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.