bokeh.models.renderers

Models (mostly base classes) for the various kinds of renderer types that Bokeh supports.

class DataRenderer(**kwargs)[source]

Bases: bokeh.models.renderers.Renderer

An abstract base class for data renderer types (e.g. GlyphRenderer, TileRenderer, GraphRenderer).

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
{
  "id": "5232a1ac-eb7b-4e4b-80bd-6e8e8d8481d3",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "level": "image",
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "visible": true
}
class GlyphRenderer(**kw)[source]

Bases: bokeh.models.renderers.DataRenderer

data_source

property type: Instance ( DataSource )

Local data source to use when rendering glyphs on the plot.

glyph

property type: Instance ( Glyph )

The glyph to render, in conjunction with the supplied data source and ranges.

hover_glyph

property type: Instance ( Glyph )

An optional glyph used for inspected points, e.g., those that are being hovered over by a HoverTool.

muted

property type: Bool

muted_glyph

property type: Instance ( Glyph )

nonselection_glyph

property type: Either ( Auto , Instance ( Glyph ) )

An optional glyph used for explicitly non-selected points (i.e., non-selected when there are other points that are selected, but not when no points at all are selected.)

If set to “auto” then a glyph with a low alpha value (0.1) will be used for non-selected points.

selection_glyph

property type: Either ( Auto , Instance ( Glyph ) )

An optional glyph used for selected points.

If set to “auto” then the standard glyph will be used for selected points.

view

property type: Instance ( CDSView )

A view into the data source to use when rendering glyphs. A default view of the entire data source is created when a view is not passed in during initialization.

x_range_name

property type: String

A particular (named) x-range to use for computing screen locations when rendering glyphs on the plot. If unset, use the default x-range.

y_range_name

property type: String

A particular (named) y-range to use for computing screen locations when rendering glyphs on the plot. If unset, use the default -range.

JSON Prototype
{
  "data_source": null,
  "glyph": null,
  "hover_glyph": null,
  "id": "9460143b-de79-4b7e-8f35-d9ba6c9741ce",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "level": "glyph",
  "muted": false,
  "muted_glyph": null,
  "name": null,
  "nonselection_glyph": "auto",
  "selection_glyph": "auto",
  "subscribed_events": [],
  "tags": [],
  "view": {
    "id": "6368bc1a-756c-4673-ab25-8cf68b281dde",
    "type": "CDSView"
  },
  "visible": true,
  "x_range_name": "default",
  "y_range_name": "default"
}
class GraphRenderer(**kwargs)[source]

Bases: bokeh.models.renderers.DataRenderer

edge_renderer

property type: Instance ( GlyphRenderer )

Instance of a GlyphRenderer containing an MultiLine Glyph that will be rendered as the graph edges.

inspection_policy

property type: Instance ( GraphHitTestPolicy )

An instance of a GraphHitTestPolicy that provides the logic for inspection of graph components.

layout_provider

property type: Instance ( LayoutProvider )

An instance of a LayoutProvider that supplies the layout of the network graph in cartesian space.

node_renderer

property type: Instance ( GlyphRenderer )

Instance of a GlyphRenderer containing an XYGlyph that will be rendered as the graph nodes.

selection_policy

property type: Instance ( GraphHitTestPolicy )

An instance of a GraphHitTestPolicy that provides the logic for selection of graph components.

x_range_name

property type: String

A particular (named) x-range to use for computing screen locations when rendering graphs on the plot. If unset, use the default x-range.

y_range_name

property type: String

A particular (named) y-range to use for computing screen locations when rendering graphs on the plot. If unset, use the default -range.

JSON Prototype
{
  "edge_renderer": {
    "id": "f3e19443-4060-4d76-8c8a-94332126e3d8",
    "type": "GlyphRenderer"
  },
  "id": "4dc12ac8-173b-4ee8-9946-5c1f186ea2d3",
  "inspection_policy": {
    "id": "e6322f75-bce5-4f04-8581-183d93325f39",
    "type": "NodesOnly"
  },
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "layout_provider": null,
  "level": "glyph",
  "name": null,
  "node_renderer": {
    "id": "39d96c77-7a08-424b-8415-4a649c410e80",
    "type": "GlyphRenderer"
  },
  "selection_policy": {
    "id": "b17e2339-0ddf-41e7-b887-e3ae1320b310",
    "type": "NodesOnly"
  },
  "subscribed_events": [],
  "tags": [],
  "visible": true,
  "x_range_name": "default",
  "y_range_name": "default"
}
class GuideRenderer(**kwargs)[source]

Bases: bokeh.models.renderers.Renderer

A base class for all guide renderer types. GuideRenderer is not generally useful to instantiate on its own.

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.

plot

property type: Instance ( Plot )

The plot to which this guide renderer is attached.

JSON Prototype
{
  "id": "faf6d1d4-56cb-4802-a42a-27408dee9cb4",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "level": "overlay",
  "name": null,
  "plot": null,
  "subscribed_events": [],
  "tags": [],
  "visible": true
}
class Renderer(**kwargs)[source]

Bases: bokeh.model.Model

An abstract base class for renderer 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.

level

property type: Enum ( RenderLevel )

Specifies the level in which to paint this renderer.

visible

property type: Bool

Is the renderer visible.

JSON Prototype
{
  "id": "92ea94c6-6f0a-4cc6-b794-c546b4d2c56d",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "level": "image",
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "visible": true
}
class TileRenderer(**kwargs)[source]

Bases: bokeh.models.renderers.DataRenderer

alpha

property type: Float

tile opacity 0.0 - 1.0

render_parents

property type: Bool

Flag enable/disable drawing of parent tiles while waiting for new tiles to arrive. Default value is True.

tile_source

property type: Instance ( TileSource )

Local data source to use when rendering glyphs on the plot.

x_range_name

property type: String

A particular (named) x-range to use for computing screen locations when rendering glyphs on the plot. If unset, use the default x-range.

y_range_name

property type: String

A particular (named) y-range to use for computing screen locations when rendering glyphs on the plot. If unset, use the default y-range.

JSON Prototype
{
  "alpha": 1.0,
  "id": "ec26a033-7fae-4fa2-8efd-646212f77bfc",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "level": "underlay",
  "name": null,
  "render_parents": true,
  "subscribed_events": [],
  "tags": [],
  "tile_source": {
    "id": "070ece2d-8e28-4408-8de1-2b4c64bbd5b9",
    "type": "WMTSTileSource"
  },
  "visible": true,
  "x_range_name": "default",
  "y_range_name": "default"
}