ScatterChartSpot
A spot on a scatter chart.
Inherits: BaseControl
Properties
color- Color of a spot.label_text- TBDlabel_text_style- TBDpoint- TBDradius- Radius of a spot.render_priority- Sort by this to manage overlap.selected- Whether to treat this spot as selected.show_tooltip- Whether to show the tooltip.tooltip- Tooltip configuration for this spot.visible- Determines whether to show or hide the spot.x- The position of a spot onXaxis.x_error- The error range of this spot on theXaxis, drawn as a horizontal error bar in the color of this spot.y- The position of a spot onYaxis.y_error- The error range of this spot on theYaxis, drawn as a vertical error bar in the color of this spot.
Properties
label_text_styleclass-attributeinstance-attribute
TBD
render_priorityclass-attributeinstance-attribute
render_priority: Number = 0Sort by this to manage overlap.
selectedclass-attributeinstance-attribute
selected: bool = FalseWhether to treat this spot as selected.
tooltipclass-attributeinstance-attribute
tooltip: ScatterChartSpotTooltip | str = field(
default_factory=lambda: ScatterChartSpotTooltip()
)Tooltip configuration for this spot.
visibleclass-attributeinstance-attribute
visible: bool = TrueDetermines whether to show or hide the spot.
x_errorclass-attributeinstance-attribute
x_error: ChartErrorRange | None = NoneThe error range of this spot on the X axis, drawn as a horizontal error bar
in the color of this spot.
Automatic axis bounds cover spot positions only, so set
ScatterChart.min_x and
ScatterChart.max_x to keep the error bar inside the chart.
y_errorclass-attributeinstance-attribute
y_error: ChartErrorRange | None = NoneThe error range of this spot on the Y axis, drawn as a vertical error bar
in the color of this spot.
Automatic axis bounds cover spot positions only, so set
ScatterChart.min_y and
ScatterChart.max_y to keep the error bar inside the chart.