bokeh.models.widgets.widget

Provide a base class for all Bokeh widget models.

In addition to different kinds of plots, various kinds of UI controls (e.g. sliders, buttons, inputs, etc.) can be included in Bokeh documents. These widgets can be used in conjunction with CustomJS callbacks that execute in the browser, or with python callbacks that execute on a Bokeh server.

class Widget(**kwargs)[source]

Bases: bokeh.models.layouts.LayoutDOM

A base class for all interactive widget types.

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.

JSON Prototype
{
  "css_classes": null,
  "disabled": false,
  "height": null,
  "id": "6e13c3d7-14de-4c3d-91c4-901d2ea9e538",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "sizing_mode": "fixed",
  "subscribed_events": [],
  "tags": [],
  "width": null
}