groups#
- class AbstractGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
Abstract base class for all kinds of groups.
Note
This is an abstract base class used to help organize the hierarchy of Bokeh model types. It is not useful to instantiate on its own.
- labels#
List of text labels contained in this group.
- class CheckboxButtonGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
A group of check boxes rendered as toggle buttons.
- active#
The list of indices of selected check boxes.
- class CheckboxGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
A group of check boxes.
- active#
The list of indices of selected check boxes.
- class RadioButtonGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
A group of radio boxes rendered as toggle buttons.
- active#
The index of the selected radio box, or
Noneif nothing is selected.
- class RadioGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
A group of radio boxes.
- active#
The index of the selected radio box, or
Noneif nothing is selected.
- class ToggleButtonGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
Abstract base class for groups with items rendered as buttons.
Note
This is an abstract base class used to help organize the hierarchy of Bokeh model types. It is not useful to instantiate on its own.
- orientation#
Orient the button group either horizontally (default) or vertically.
- class ToggleInputGroup(*args: Any, id: ID | None = None, **kwargs: Any)[source]#
- Abstract base class for groups with items rendered as check/radio
boxes.
Note
This is an abstract base class used to help organize the hierarchy of Bokeh model types. It is not useful to instantiate on its own.
- inline#
Should items be arrange vertically (
False) or horizontally in-line (True).