Skip to main content

ScatterChartSpot

A spot on a scatter chart.

Inherits: BaseControl

Properties

Properties

colorclass-attributeinstance-attribute

color: Optional[ColorValue] = None

Color of a spot.

label_textclass-attributeinstance-attribute

label_text: str = ''

TBD

label_text_styleclass-attributeinstance-attribute

label_text_style: TextStyle = field(default_factory=(lambda: TextStyle()))

TBD

pointclass-attributeinstance-attribute

point: Union[None, bool, ChartPointShape] = None

TBD

radiusclass-attributeinstance-attribute

radius: Optional[Number] = None

Radius of a spot.

render_priorityclass-attributeinstance-attribute

render_priority: Number = 0

Sort by this to manage overlap.

selectedclass-attributeinstance-attribute

selected: bool = False

Whether to treat this spot as selected.

show_tooltipclass-attributeinstance-attribute

show_tooltip: bool = True

Whether to show the tooltip.

tooltipclass-attributeinstance-attribute

tooltip: Union[ScatterChartSpotTooltip, str] = field(default_factory=(lambda: ScatterChartSpotTooltip()))

Tooltip configuration for this spot.

visibleclass-attributeinstance-attribute

visible: bool = True

Determines whether to show or hide the spot.

xclass-attributeinstance-attribute

x: Optional[Number] = None

The position of a spot on X axis.

x_errorclass-attributeinstance-attribute

x_error: Optional[Any] = None

Determines the error range of the data point using FlErrorRange (which contains lowerBy and upperValue) for the X axis.

yclass-attributeinstance-attribute

y: Optional[Number] = None

The position of a spot on Y axis.

y_errorclass-attributeinstance-attribute

y_error: Optional[Any] = None

Determines the error range of the data point using FlErrorRange (which contains lowerBy and upperValue) for the Y axis.