bokeh.models.tools

Bokeh comes with a number of interactive tools.

There are five types of tool interactions:

  • Pan/Drag
  • Click/Tap
  • Scroll/Pinch
  • Actions
  • Inspectors

For the first three comprise the category of gesture tools, and only one tool for each gesture can be active at any given time. The active tool is indicated on the toolbar by a highlight next to to the tool. Actions are immediate or modal operations that are only activated when their button in the toolbar is pressed. Inspectors are passive tools that merely report information or annotate the plot in some way, and may always be active regardless of what other tools are currently active.

class Action(**kwargs)[source]

Bases: bokeh.models.tools.Tool

A base class for tools that are buttons in the toolbar.

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": "1168a6a1-2219-4321-b2e3-0b629638e801",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class BoxSelectTool(**kwargs)[source]

Bases: bokeh.models.tools.Drag

toolbar icon: box_select_icon

The box selection tool allows users to make selections on a Plot by indicating a rectangular region by dragging the mouse or a finger over the plot region. The end of the drag event indicates the selection region is ready.

See Selected and Unselected Glyphs for information on styling selected and unselected glyphs.

callback

property type: Instance ( Callback )

A callback to run in the browser on completion of drawing a selection box. The cb_data parameter that is available to the Callback code will contain one BoxSelectTool-specific field:

Geometry:object containing the coordinates of the selection box
dimensions

property type: Enum ( Dimensions )

Which dimensions the box selection is to be free in. By default, users may freely draw selections boxes with any dimensions. If only “width” is supplied, the box will be constrained to span the entire vertical space of the plot, only the horizontal dimension can be controlled. If only “height” is supplied, the box will be constrained to span the entire horizontal space of the plot, and the vertical dimension can be controlled.

names

property type: List ( String )

A list of names to query for. If set, only renderers that have a matching value for their name attribute will be used.

overlay

property type: Instance ( BoxAnnotation )

A shaded annotation drawn to indicate the selection region.

renderers

property type: List ( Instance ( Renderer ) )

An explicit list of renderers to hit test again. If unset, defaults to all renderers on a plot.

select_every_mousemove

property type: Bool

Whether a selection computation should happen on every mouse event, or only once, when the selection region is completed. Default: False

JSON Prototype
{
  "callback": null,
  "dimensions": "both",
  "id": "d64240f9-a131-4e72-99c7-491d02bcb2b8",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "names": [],
  "overlay": {
    "id": "75c8ca47-418f-4c1f-be16-9232966c5ec4",
    "type": "BoxAnnotation"
  },
  "renderers": [],
  "select_every_mousemove": false,
  "subscribed_events": [],
  "tags": []
}
class BoxZoomTool(**kwargs)[source]

Bases: bokeh.models.tools.Drag

toolbar icon: box_zoom_icon

The box zoom tool allows users to define a rectangular region of a Plot to zoom to by dragging he mouse or a finger over the plot region. The end of the drag event indicates the selection region is ready.

dimensions

property type: Enum ( Dimensions )

Which dimensions the zoom box is to be free in. By default, users may freely draw zoom boxes with any dimensions. If only “width” is supplied, the box will be constrained to span the entire vertical space of the plot, only the horizontal dimension can be controlled. If only “height” is supplied, the box will be constrained to span the entire horizontal space of the plot, and the vertical dimension can be controlled.

match_aspect

property type: Bool

Whether the box zoom region should be restricted to have the same aspect ratio as the plot region.

Note

If the tool is restricted to one dimension, this value has no effect.

overlay

property type: Instance ( BoxAnnotation )

A shaded annotation drawn to indicate the selection region.

JSON Prototype
{
  "dimensions": "both",
  "id": "40dfb676-4a3a-46fc-8284-6b5c60f830b3",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "match_aspect": false,
  "name": null,
  "overlay": {
    "id": "311764ca-586d-4ecd-a36b-eeba010ebdee",
    "type": "BoxAnnotation"
  },
  "subscribed_events": [],
  "tags": []
}
class CrosshairTool(**kwargs)[source]

Bases: bokeh.models.tools.Inspection

toolbar icon: crosshair_icon

The crosshair tool is a passive inspector tool. It is generally on at all times, but can be configured in the inspector’s menu associated with the toolbar icon shown above.

The crosshair tool draws a crosshair annotation over the plot, centered on the current mouse position. The crosshair tool may be configured to draw across only one dimension by setting the dimension property to only width or height.

dimensions

property type: Enum ( Dimensions )

Which dimensions the crosshair tool is to track. By default, both a vertical and horizontal line will be drawn. If only “width” is supplied, only a horizontal line will be drawn. If only “height” is supplied, only a vertical line will be drawn.

line_alpha

property type: Float

An alpha value to use to stroke paths with.

Acceptable values are floating point numbers between 0 (transparent) and 1 (opaque).

line_color

property type: Color

A color to use to stroke paths with.

Acceptable values are:

  • any of the 147 named CSS colors, e.g 'green', 'indigo'
  • an RGB(A) hex value, e.g., '#FF0000', '#44444444'
  • a 3-tuple of integers (r,g,b) between 0 and 255
  • a 4-tuple of (r,g,b,a) where r,g,b are integers between 0..255 and a is between 0..1
line_width

property type: Float

Stroke width in units of pixels.

JSON Prototype
{
  "dimensions": "both",
  "id": "c4d63e1d-2cdf-474f-b958-967d46045f6e",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "line_alpha": 1.0,
  "line_color": "black",
  "line_width": 1,
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "toggleable": true
}
class Drag(**kwargs)[source]

Bases: bokeh.models.tools.Tool

A base class for tools that respond to drag events.

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": "089e7299-d30b-4ab1-91fb-e0e3ac5934b8",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class HelpTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

A button tool to provide a “help” link to users.

The hover text can be customized through the help_tooltip attribute and the redirect site overridden as well.

help_tooltip

property type: String

Tooltip displayed when hovering over the help icon.

redirect

property type: String

Site to be redirected through upon click.

JSON Prototype
{
  "help_tooltip": "Click the question mark to learn more about Bokeh plot tools.",
  "id": "72b8b959-0144-480d-ba41-610859fc9a9d",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "redirect": "https://bokeh.pydata.org/en/latest/docs/user_guide/tools.html#built-in-tools",
  "subscribed_events": [],
  "tags": []
}
class HoverTool(**kwargs)[source]

Bases: bokeh.models.tools.Inspection

toolbar icon: crosshair_icon

The hover tool is a passive inspector tool. It is generally on at all times, but can be configured in the inspector’s menu associated with the toolbar icon shown above.

By default, the hover tool displays informational tooltips whenever the cursor is directly over a glyph. The data to show comes from the glyph’s data source, and what is to be displayed is configurable with the tooltips attribute that maps display names to columns in the data source, or to special known variables.

Here is an example of how to configure and use the hover tool:

# Add tooltip (name, field) pairs to the tool. See below for a
# description of possible field values.
hover.tooltips = [
    ("index", "$index"),
    ("(x,y)", "($x, $y)"),
    ("radius", "@radius"),
    ("fill color", "$color[hex, swatch]:fill_color"),
    ("foo", "@foo"),
    ("bar", "@bar"),
    ("baz", "@baz{safe}"),
    ("total", "@total{$0,0.00}"
]

You can also supply a Callback to the HoverTool, to build custom interactions on hover. In this case you may want to turn the tooltips off by setting tooltips=None.

Warning

When supplying a callback or custom template, the explicit intent of this Bokeh Model is to embed raw HTML and JavaScript code for a browser to execute. If any part of the code is derived from untrusted user inputs, then you must take appropriate care to sanitize the user input prior to passing to Bokeh.

Hover tool does not currently work with the following glyphs:

  • annulus
  • arc
  • bezier
  • image
  • image_rgba
  • image_url
  • oval
  • patch
  • quadratic
  • ray
  • text
anchor

property type: Enum ( Anchor )

If point policy is set to “snap_to_data”, anchor defines the attachment point of a tooltip. The default is to attach to the center of a glyph.

attachment

property type: Enum ( Enumeration(horizontal, vertical) )

Whether tooltip’s arrow should appear in the horizontal or vertical dimension.

callback

property type: Instance ( Callback )

A callback to run in the browser whenever the input’s value changes. The cb_data parameter that is available to the Callback code will contain two HoverTool specific fields:

Index:object containing the indices of the hovered points in the data source
Geometry:object containing the coordinates of the hover cursor
formatters

property type: Dict ( String , Enum ( TooltipFieldFormatter ) )

Specify the formatting scheme for data source columns, e.g.

tool.formatters = dict(date="datetime")

will cause format specifications for the “date” column to be interpreted according to the “datetime” formatting scheme. The following schemed are available:

“numeral”:Provides a wide variety of formats for numbers, currency, bytes, times, and percentages. The full set of formats can be found in the NumeralTickFormatter reference documentation.
“datetime”:Provides formats for date and time values. The full set of formats is listed in the DatetimeTickFormatter reference documentation.
“printf”:Provides formats similar to C-style “printf” type specifiers. See the PrintfTickFormatter reference documentation for complete details.

If no formatter is specified for a column name, the default "numeral" formatter is assumed.

line_policy

property type: Enum ( Enumeration(prev, next, nearest, interp, none) )

When showing tooltips for lines, designates whether the tooltip position should be the “previous” or “next” points on the line, the “nearest” point to the current mouse position, or “interpolate” along the line to the current mouse position.

mode

property type: Enum ( Enumeration(mouse, hline, vline) )

Whether to consider hover pointer as a point (x/y values), or a span on h or v directions.

names

property type: List ( String )

A list of names to query for. If set, only renderers that have a matching value for their name attribute will be used.

point_policy

property type: Enum ( Enumeration(snap_to_data, follow_mouse, none) )

Whether the tooltip position should snap to the “center” (or other anchor) position of the associated glyph, or always follow the current mouse cursor position.

renderers

property type: List ( Instance ( Renderer ) )

An explicit list of renderers to hit test again. If unset, defaults to all renderers on a plot.

show_arrow

property type: Bool

Whether tooltip’s arrow should be showed.

tooltips

property type: Either ( String , List ( Tuple ( String , String ) ) )

The (name, field) pairs describing what the hover tool should display when there is a hit.

Field names starting with “@” are interpreted as columns on the data source. For instance, “@temp” would look up values to display from the “temp” column of the data source.

Field names starting with “$” are special, known fields:

$index:index of selected point in the data source
$x:x-coordinate under the cursor in data space
$y:y-coordinate under the cursor in data space
$sx:x-coordinate under the cursor in screen (canvas) space
$sy:y-coordinate under the cursor in screen (canvas) space
$color:color data from data source, with the syntax: $color[options]:field_name. The available options are: ‘hex’ (to display the color as a hex value), and ‘swatch’ to also display a small color swatch.

Field names that begin with @ are associated with columns in a ColumnDataSource. For instance the field name "@price" will display values from the "price" column whenever a hover is triggered. If the hover is for the 17th glyph, then the hover tooltip will correspondingly display the 17th price value.

Note that if a column name contains spaces, the it must be supplied by surrounding it in curly braces, e.g. @{adjusted close} will display values from a column named "adjusted close".

By default, values for fields (e.g. @foo) are displayed in a basic numeric format. However it is possible to control the formatting of values more precisely. Fields can be modified by appending a format specified to the end in curly braces. Some examples are below.

"@foo{0,0.000}"    # formats 10000.1234 as: 10,000.123

"@foo{(.00)}"      # formats -10000.1234 as: (10000.123)

"@foo{($ 0.00 a)}" # formats 1230974 as: $ 1.23 m

Specifying a format {safe} after a field name will override automatic escaping of the tooltip data source. Any HTML tags in the data tags will be rendered as HTML in the resulting HoverTool output. See Custom Tooltip for a more detailed example.

None is also a valid value for tooltips. This turns off the rendering of tooltips. This is mostly useful when supplying other actions on hover via the callback property.

Note

The tooltips attribute can also be configured with a mapping type, e.g. dict or OrderedDict. However, if a dict is used, the visual presentation order is unspecified.

JSON Prototype
{
  "anchor": "center",
  "attachment": "horizontal",
  "callback": null,
  "formatters": {},
  "id": "7d3f86da-8e39-490e-b6f7-700c9b1dac6e",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "line_policy": "nearest",
  "mode": "mouse",
  "name": null,
  "names": [],
  "point_policy": "snap_to_data",
  "renderers": [],
  "show_arrow": true,
  "subscribed_events": [],
  "tags": [],
  "toggleable": true,
  "tooltips": [
    [
      "index",
      "$index"
    ],
    [
      "data (x, y)",
      "($x, $y)"
    ],
    [
      "screen (x, y)",
      "($sx, $sy)"
    ]
  ]
}
class Inspection(**kwargs)[source]

Bases: bokeh.models.tools.Tool

A base class for tools that perform “inspections”, e.g. HoverTool.

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.

toggleable

property type: Bool

Whether an on/off toggle button should appear in the toolbar for this inpection tool. If False, the viewers of a plot will not be able to toggle the inspector on or off using the toolbar.

JSON Prototype
{
  "id": "c32c6983-f33b-47a4-b555-61fdd6184cda",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "toggleable": true
}
class LassoSelectTool(**kwargs)[source]

Bases: bokeh.models.tools.Drag

toolbar icon: lasso_select_icon

The lasso selection tool allows users to make selections on a Plot by indicating a free-drawn “lasso” region by dragging the mouse or a finger over the plot region. The end of the drag event indicates the selection region is ready.

See Selected and Unselected Glyphs for information on styling selected and unselected glyphs.

Note

Selections can be comprised of multiple regions, even those made by different selection tools. Hold down the <<shift>> key while making a selection to append the new selection to any previous selection that might exist.

callback

property type: Instance ( Callback )

A callback to run in the browser on every selection of a lasso area. The cb_data parameter that is available to the Callback code will contain one LassoSelectTool-specific field:

Geometry:object containing the coordinates of the lasso area
names

property type: List ( String )

A list of names to query for. If set, only renderers that have a matching value for their name attribute will be used.

overlay

property type: Instance ( PolyAnnotation )

A shaded annotation drawn to indicate the selection region.

renderers

property type: List ( Instance ( Renderer ) )

An explicit list of renderers to hit test again. If unset, defaults to all renderers on a plot.

select_every_mousemove

property type: Bool

Whether a selection computation should happen on every mouse event, or only once, when the selection region is completed. Default: True

JSON Prototype
{
  "callback": null,
  "id": "134a7162-9668-432a-ae55-302116ca7cdf",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "names": [],
  "overlay": {
    "id": "b2254f11-5e82-4a97-a4bc-cac93c525485",
    "type": "PolyAnnotation"
  },
  "renderers": [],
  "select_every_mousemove": true,
  "subscribed_events": [],
  "tags": []
}
class PanTool(**kwargs)[source]

Bases: bokeh.models.tools.Drag

toolbar icon: pan_icon

The pan tool allows the user to pan a Plot by left-dragging a mouse, or on touch devices by dragging a finger or stylus, across the plot region.

The pan tool also activates the border regions of a Plot for “single axis” panning. For instance, dragging in the vertical border or axis will effect a pan in the vertical direction only, with the horizontal dimension kept fixed.

dimensions

property type: Enum ( Dimensions )

Which dimensions the pan tool is constrained to act in. By default the pan tool will pan in any dimension, but can be configured to only pan horizontally across the width of the plot, or vertically across the height of the plot.

JSON Prototype
{
  "dimensions": "both",
  "id": "bf207102-cf88-41d5-a564-c0c31c1b71fd",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class PolySelectTool(**kwargs)[source]

Bases: bokeh.models.tools.Tap

toolbar icon: poly_select_icon

The polygon selection tool allows users to make selections on a Plot by indicating a polygonal region with mouse clicks. single clicks (or taps) add successive points to the definition of the polygon, and a double click (or tap) indicates the selection region is ready.

See Selected and Unselected Glyphs for information on styling selected and unselected glyphs.

Note

Selections can be comprised of multiple regions, even those made by different selection tools. Hold down the <<shift>> key while making a selection to append the new selection to any previous selection that might exist.

callback

property type: Instance ( Callback )

A callback to run in the browser on completion of drawing a polygon. The cb_data parameter that is available to the Callback code will contain one PolySelectTool-specific field:

Geometry:object containing the coordinates of the polygon
names

property type: List ( String )

A list of names to query for. If set, only renderers that have a matching value for their name attribute will be used.

overlay

property type: Instance ( PolyAnnotation )

A shaded annotation drawn to indicate the selection region.

renderers

property type: List ( Instance ( Renderer ) )

An explicit list of renderers to hit test again. If unset, defaults to all renderers on a plot.

JSON Prototype
{
  "callback": null,
  "id": "bb42f400-bcde-4dd3-9919-96f8e255d649",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "names": [],
  "overlay": {
    "id": "9021f3dc-40d3-4093-8837-bddd2d45d62f",
    "type": "PolyAnnotation"
  },
  "renderers": [],
  "subscribed_events": [],
  "tags": []
}
class ProxyToolbar(**kwargs)[source]

Bases: bokeh.models.tools.ToolbarBase

A toolbar that allow to merge and proxy tools of toolbars in multiple plots.

JSON Prototype
{
  "id": "7da51dee-e853-4579-9294-5507da6baa06",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "logo": "normal",
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "tools": []
}
class RedoTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

toolbar icon: redo_icon

Redo tool reverses the last action performed by undo tool.

JSON Prototype
{
  "id": "a86467a4-a033-4208-ad7a-ddd72a4337ba",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class ResetTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

toolbar icon: reset_icon

The reset tool is an action. When activated in the toolbar, the tool resets the data bounds of the plot to their values when the plot was initially created.

Optionally, the reset tool also resets the plat canvas dimensions to their original size

reset_size

property type: Bool

Whether activating the Reset tool should also reset the plot’s canvas dimensions to their original size.

JSON Prototype
{
  "id": "0ea503b8-1ad1-4215-9f51-dd975949f59f",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "reset_size": true,
  "subscribed_events": [],
  "tags": []
}
class SaveTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

toolbar icon: save_icon

The save tool is an action. When activated, the tool opens a download dialog which allows to save an image reproduction of the plot in PNG format. If automatic download is not support by a web browser, the tool falls back to opening the generated image in a new tab or window. User then can manually save it by right clicking on the image and choosing “Save As” (or similar) menu item.

JSON Prototype
{
  "id": "e70b1581-48c2-46ec-a6f5-65d87d1d9c24",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class Scroll(**kwargs)[source]

Bases: bokeh.models.tools.Tool

A base class for tools that respond to scroll events.

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": "2d1364fa-6715-410f-963f-11716661cd4e",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class Tap(**kwargs)[source]

Bases: bokeh.models.tools.Tool

A base class for tools that respond to tap/click events.

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": "aca40154-addd-4290-8474-af5dc6c3f54e",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class TapTool(**kwargs)[source]

Bases: bokeh.models.tools.Tap

toolbar icon: tap_icon

The tap selection tool allows the user to select at single points by left-clicking a mouse, or tapping with a finger.

See Selected and Unselected Glyphs for information on styling selected and unselected glyphs.

Note

Selections can be comprised of multiple regions, even those made by different selection tools. Hold down the <<shift>> key while making a selection to append the new selection to any previous selection that might exist.

behavior

property type: Enum ( Enumeration(select, inspect) )

This tool can be configured to either make selections or inspections on associated data sources. The difference is that selection changes propagate across bokeh and other components (e.g. selection glyph) will be notified. Inspecions don’t act like this, so it’s useful to configure callback when setting behavior=’inspect’.

callback

property type: Instance ( Callback )

A callback to execute whenever a glyph is “hit” by a mouse click or tap.

This is often useful with the OpenURL model to open URLs based on a user clicking or tapping a specific glyph.

However, it may also be a CustomJS which can execute arbitrary JavaScript code in response to clicking or tapping glyphs. The callback will be executed for each individual glyph that is it hit by a click or tap, and will receive the TapTool model as cb_obj. The optional cb_data will have the data source as its .source attribute and the selection geometry as its .geometries attribute.

Note

This callback does not execute on every tap, only when a glyphs is “hit”. If you would like to execute a callback on every mouse tap, please see CustomJS for User Interaction Events.

names

property type: List ( String )

A list of names to query for. If set, only renderers that have a matching value for their name attribute will be used.

renderers

property type: List ( Instance ( Renderer ) )

An explicit list of renderers to hit test again. If unset, defaults to all renderers on a plot.

JSON Prototype
{
  "behavior": "select",
  "callback": null,
  "id": "9f31c254-2873-4486-97ec-c359db0091c0",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "names": [],
  "renderers": [],
  "subscribed_events": [],
  "tags": []
}
class Tool(**kwargs)[source]

Bases: bokeh.model.Model

A base class for all interactive tool 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.

plot
JSON Prototype
{
  "id": "6cdd483b-35a7-4735-b641-95caf0cbdf6d",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class Toolbar(**kwargs)[source]

Bases: bokeh.models.tools.ToolbarBase

Collect tools to display for a single plot.

active_drag

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

Specify a drag tool to be active when the plot is displayed.

active_inspect

property type: Either ( Auto , Instance ( Inspection ), Seq ( Instance ( Inspection ) ) )

Specify an inspection tool or sequence of inspection tools to be active when the plot is displayed.

active_scroll

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

Specify a scroll/pinch tool to be active when the plot is displayed.

active_tap

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

Specify a tap/click tool to be active when the plot is displayed.

JSON Prototype
{
  "active_drag": "auto",
  "active_inspect": "auto",
  "active_scroll": "auto",
  "active_tap": "auto",
  "id": "a4d910b7-fe82-4e8f-85b9-d0037ab0ff7e",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "logo": "normal",
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "tools": []
}
class ToolbarBase(**kwargs)[source]

Bases: bokeh.model.Model

A base class for different toolbars.

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.

property type: Enum ( Enumeration(normal, grey) )

What version of the Bokeh logo to display on the toolbar. If set to None, no logo will be displayed.

tools

property type: List ( Instance ( Tool ) )

A list of tools to add to the plot.

JSON Prototype
{
  "id": "aa7d78b1-caee-42b7-a8cd-ea25062976b0",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "logo": "normal",
  "name": null,
  "subscribed_events": [],
  "tags": [],
  "tools": []
}
class ToolbarBox(**kwargs)[source]

Bases: bokeh.models.layouts.LayoutDOM

A layoutable toolbar that can accept the tools of multiple plots, and can merge the tools into a single button for convenience.

toolbar

property type: Instance ( ToolbarBase )

A toolbar associated with a plot which holds all its tools.

toolbar_location

property type: Enum ( Location )

JSON Prototype
{
  "css_classes": [],
  "disabled": false,
  "height": null,
  "id": "8d4b657a-ed21-4df8-a187-aee0733d91f2",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "sizing_mode": "fixed",
  "subscribed_events": [],
  "tags": [],
  "toolbar": null,
  "toolbar_location": "right",
  "width": null
}
class UndoTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

toolbar icon: undo_icon

Undo tool allows to restore previous state of the plot.

JSON Prototype
{
  "id": "c991013a-1166-4cc4-ace8-c2d1ca525d95",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class WheelPanTool(**kwargs)[source]

Bases: bokeh.models.tools.Scroll

toolbar icon: wheel_pan_icon

The wheel pan tool allows the user to pan the plot along the configured dimension using the scroll wheel.

dimension

property type: Enum ( Dimension )

Which dimension the wheel pan tool is constrained to act in. By default the wheel pan tool will pan the plot along the x-axis.

JSON Prototype
{
  "dimension": "width",
  "id": "03207311-5b59-4ffb-ba95-207755a265fa",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class WheelZoomTool(**kwargs)[source]

Bases: bokeh.models.tools.Scroll

toolbar icon: wheel_zoom_icon

The wheel zoom tool will zoom the plot in and out, centered on the current mouse location.

The wheel zoom tool also activates the border regions of a Plot for “single axis” zooming. For instance, zooming in the vertical border or axis will effect a zoom in the vertical direction only, with the horizontal dimension kept fixed.

dimensions

property type: Enum ( Dimensions )

Which dimensions the wheel zoom tool is constrained to act in. By default the wheel zoom tool will zoom in any dimension, but can be configured to only zoom horizontally across the width of the plot, or vertically across the height of the plot.

JSON Prototype
{
  "dimensions": "both",
  "id": "4d21030b-871c-463c-822f-0043baafbbf3",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class ZoomInTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

toolbar icon: zoom_in_icon

The zoom-in tool allows users to click a button to zoom in by a fixed amount.

dimensions

property type: Enum ( Dimensions )

Which dimensions the zoom-in tool is constrained to act in. By default the zoom-in zoom tool will zoom in any dimension, but can be configured to only zoom horizontally across the width of the plot, or vertically across the height of the plot.

factor

property type: Percent

Percentage to zoom for each click of the zoom-in tool.

JSON Prototype
{
  "dimensions": "both",
  "factor": 0.1,
  "id": "98905794-d331-4aa0-8fec-5e9d5044dde6",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
class ZoomOutTool(**kwargs)[source]

Bases: bokeh.models.tools.Action

toolbar icon: zoom_out_icon

The zoom-out tool allows users to click a button to zoom out by a fixed amount.

dimensions

property type: Enum ( Dimensions )

Which dimensions the zoom-out tool is constrained to act in. By default the zoom-out tool will zoom in any dimension, but can be configured to only zoom horizontally across the width of the plot, or vertically across the height of the plot.

factor

property type: Percent

Percentage to zoom for each click of the zoom-in tool.

JSON Prototype
{
  "dimensions": "both",
  "factor": 0.1,
  "id": "1d48bad0-0519-4273-8ecf-186b04dfb00b",
  "js_event_callbacks": {},
  "js_property_callbacks": {},
  "name": null,
  "subscribed_events": [],
  "tags": []
}
DEFAULT_BOX_OVERLAY()
DEFAULT_POLY_OVERLAY()