Skip to content

RadioGroup

Examples#

See these.

RadioGroup #

Bases: Control

Radio buttons let people select a single option from two or more choices.

content #

content: Control

The content of the RadioGroup.

Typically a list of Radio controls nested in a container control, e.g. Column, Row.

on_change #

on_change: ControlEventHandler[RadioGroup] | None = None

Called when the state of the RadioGroup is changed.

value #

value: str | None = None

Current value of the RadioGroup.

before_update #

before_update()