Skip to content

ChartCirclePoint

ChartCirclePoint #

Bases: ChartPointShape

Draws a circle.

color #

color: ColorValue | None = None

The fill color to use for the circle.

radius #

radius: Number | None = None

The radius of the circle.

stroke_color #

stroke_color: ColorValue | None = None

The stroke color to use for the circle

stroke_width #

stroke_width: Number = 0

The stroke width to use for the circle.

copy_with #

copy_with(
    *,
    color: ColorValue | None = None,
    radius: Number | None = None,
    stroke_color: ColorValue | None = None,
    stroke_width: Number | None = None,
) -> ChartCirclePoint

Returns a copy of this object with the specified properties overridden.