bokeh.models.selections¶
-
class
IntersectRenderers
(**kwargs)[source]¶ Bases:
bokeh.models.selections.SelectionPolicy
When a data source is shared between multiple renderers, a row in the data source will only be selected if that point for each renderer is selected. The selection is made from the intersection of hit test results from all renderers.
-
class
Selection
(**kwargs)[source]¶ Bases:
bokeh.model.Model
A Selection represents a portion of the data in a DataSource, which can be visually manipulated in a plot.
Selections are typically created by selecting points in a plot with a SelectTool, but can also be programmatically specified.
-
class
SelectionPolicy
(**kwargs)[source]¶ Bases:
bokeh.model.Model
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.
-
class
UnionRenderers
(**kwargs)[source]¶ Bases:
bokeh.models.selections.SelectionPolicy
When a data source is shared between multiple renderers, selecting a point on from any renderer will cause that row in the data source to be selected. The selection is made from the union of hit test results from all renderers.