bokeh.models.widgets.panels¶
Various kinds of panel widgets.
-
class
Panel(**kwargs)¶ Bases:
bokeh.models.widgets.widget.WidgetA single-widget container with title bar and controls.
-
child¶ property type: child:Instance(LayoutDOM)
The child widget. If you need more children, use a layout widget, e.g.
HBoxorVBox.
-
closable¶ property type: closable:Bool
Whether this panel is closeable or not. If True, an “x” button will appear.
-
title¶ property type: title:String
An optional text title of the panel.
-
-
class
Tabs(**kwargs)¶ Bases:
bokeh.models.widgets.widget.WidgetA panel widget with navigation tabs.
-
active¶ property type: active:Int
The index of the active tab.
-
callback¶ property type: callback:Instance(Callback)
A callback to run in the browser whenever the button is activated.
-
tabs¶ property type: tabs:List(Instance(Panel))
The list of child panel widgets.
-