bokeh.models.plots
¶
Models for representing top-level plot objects.
-
class
GridPlot
(**kwargs)¶ Bases:
bokeh.models.component.Component
A 2D grid of plots rendered on separate canvases in an HTML table.
-
column
(col)¶ Return a given column of plots from this GridPlot.
Parameters: col (int) – index of the column to return Returns: column of plots Return type: seq[Plot]
-
row
(row)¶ Return a given row of plots from this GridPlot.
Parameters: rwo (int) – index of the row to return Returns: row of plots Return type: seq[Plot]
-
select
(*args, **kwargs)¶ Query this object and all of its references for objects that match the given selector. See Plot.select for detailed usage information.
Returns: seq[Model]
-
border_space
¶ property type: border_space:Int
Distance (in pixels) between adjacent plots.
-
children
¶ property type: children:List(List(Instance(Plot)))
An array of plots to display in a grid, given as a list of lists of Plot objects. To leave a position in the grid empty, pass None for that position in the
children
list.
-
toolbar_location
¶ property type: toolbar_location:Enum(‘above’, ‘below’, ‘left’, ‘right’)
Where the toolbar will be located. If set to None, no toolbar will be attached to the plot.
-
-
class
LayoutBox
(**kwargs)¶ Bases:
bokeh.model.Model
Represents an on-canvas layout.
-
class
Plot
(**kwargs)¶ Bases:
bokeh.models.component.Component
Model representing a plot, containing glyphs, guides, annotations.
-
add_dynamic_image
(image_source, **kw)¶ Adds new DynamicImageRenderer into the Plot.renderers
Parameters: image_source (ImageSource) – a image source instance which contain image configuration Keyword Arguments: Additional keyword arguments are passed on as-is to the dynamic image renderer Returns: DynamicImageRenderer Return type: DynamicImageRenderer
-
add_glyph
(source_or_glyph, glyph=None, **kw)¶ Adds a glyph to the plot with associated data sources and ranges.
This function will take care of creating and configuring a Glyph object, and then add it to the plot’s list of renderers.
Parameters: - source (DataSource) – a data source for the glyphs to all use
- glyph (Glyph) – the glyph to add to the Plot
Keyword Arguments: - Any additional keyword arguments are passed on as-is to the
- Glyph initializer.
Returns: Glyph
-
add_layout
(obj, place='center')¶ Adds an object to the plot in a specified place.
Parameters: - obj (Renderer) – the object to add to the Plot
- place (str, optional) – where to add the object (default: ‘center’) Valid places are: ‘left’, ‘right’, ‘above’, ‘below’, ‘center’.
Returns: None
-
add_tile
(tile_source, **kw)¶ Adds new TileRenderer into the Plot.renderers
Parameters: tile_source (TileSource) – a tile source instance which contain tileset configuration Keyword Arguments: Additional keyword arguments are passed on as-is to the tile renderer Returns: TileRenderer Return type: TileRenderer
-
add_tools
(*tools)¶ Adds an tools to the plot.
Parameters: *tools (Tool) – the tools to add to the Plot Returns: None
-
column
(col, gridplot)¶ Return whether this plot is in a given column of a GridPlot.
Parameters: Returns: bool
-
row
(row, gridplot)¶ Return whether this plot is in a given row of a GridPlot.
Parameters: Returns: bool
-
select
(*args, **kwargs)¶ Query this object and all of its references for objects that match the given selector.
There are a few different ways to call the
select
method. The most general is to supply a JSON-like query dictionary as the single argument or as keyword arguments:Parameters: selector (JSON-like) – some sample text Keyword Arguments: kwargs – query dict key/values as keyword arguments For convenience, queries on just names can be made by supplying the
name
string as the single parameter:Parameters: name (str) – the name to query on Also queries on just type can be made simply by supplying the
Model
subclass as the single parameter:Parameters: type (Model) – the type to query on Returns: seq[Model] Examples
# These two are equivalent p.select({"type": HoverTool}) p.select(HoverTool) # These two are also equivalent p.select({"name": "mycircle"}) p.select("mycircle") # Keyword arguments can be supplied in place of selector dict p.select({"name": "foo", "type": HoverTool}) p.select(name="foo", type=HoverTool)
-
above
¶ property type: above:List(Either(Instance(Renderer), Instance(LayoutBox)))
A list of renderers to occupy the area above of the plot.
-
background_fill
¶
-
background_fill_alpha
¶ property type: background_fill_alpha:NumberSpec(String, Dict(String, Either(String, Float)), Float)
The fill alpha for the plot background style.
-
background_fill_color
¶ property type: background_fill_color:ColorSpec(String, Dict(String, Either(String, Color)), Color)
The fill color for the plot background style.
-
below
¶ property type: below:List(Instance(Renderer))
A list of renderers to occupy the area below of the plot.
-
border_fill
¶
-
border_fill_alpha
¶ property type: border_fill_alpha:NumberSpec(String, Dict(String, Either(String, Float)), Float)
The fill alpha for the plot border style.
-
border_fill_color
¶ property type: border_fill_color:ColorSpec(String, Dict(String, Either(String, Color)), Color)
The fill color for the plot border style.
-
extra_x_ranges
¶ property type: extra_x_ranges:Dict(String, Instance(Range1d))
Additional named ranges to make available for mapping x-coordinates.
This is useful for adding additional axes.
-
extra_y_ranges
¶ property type: extra_y_ranges:Dict(String, Instance(Range))
Additional named ranges to make available for mapping y-coordinates.
This is useful for adding additional axes.
-
h_symmetry
¶ property type: h_symmetry:Bool
Whether the total horizontal padding on both sides of the plot will be made equal (the left or right padding amount, whichever is larger).
-
hidpi
¶ property type: hidpi:Bool
Whether to use HiDPI mode when available.
-
left
¶ property type: left:List(Instance(Renderer))
A list of renderers to occupy the area to the left of the plot.
-
lod_factor
¶ property type: lod_factor:Int
Decimation factor to use when applying level-of-detail decimation.
-
lod_interval
¶ property type: lod_interval:Int
Interval (in ms) during which an interactive tool event will enable level-of-detail downsampling.
-
lod_threshold
¶ property type: lod_threshold:Int
A number of data points, above which level-of-detail downsampling may be performed by glyph renderers. Set to
None
to disable any level-of-detail downsampling.
-
lod_timeout
¶ property type: lod_timeout:Int
Timeout (in ms) for checking whether interactive tool events are still occurring. Once level-of-detail mode is enabled, a check is made every
lod_timeout
ms. If no interactive tool events have happened, level-of-detail mode is disabled.
-
logo
¶ property type: logo:Enum(‘normal’, ‘grey’)
What version of the Bokeh logo to display on the toolbar. If set to None, no logo will be displayed.
-
min_border
¶ property type: min_border:Int
A convenience property to set all all the
min_X_border
properties to the same value. If an individual border property is explicitly set, it will overridemin_border
.
-
min_border_bottom
¶ property type: min_border_bottom:Int
Minimum size in pixels of the padding region below the bottom of the central plot region.
Note
This is a minimum. The padding region may expand as needed to accommodate titles or axes, etc.
-
min_border_left
¶ property type: min_border_left:Int
Minimum size in pixels of the padding region to the left of the central plot region.
Note
This is a minimum. The padding region may expand as needed to accommodate titles or axes, etc.
-
min_border_right
¶ property type: min_border_right:Int
Minimum size in pixels of the padding region to the right of the central plot region.
Note
This is a minimum. The padding region may expand as needed to accommodate titles or axes, etc.
-
min_border_top
¶ property type: min_border_top:Int
Minimum size in pixels of the padding region above the top of the central plot region.
Note
This is a minimum. The padding region may expand as needed to accommodate titles or axes, etc.
-
outline_line_alpha
¶ property type: outline_line_alpha:NumberSpec(String, Dict(String, Either(String, Float)), Float)
The line alpha for the plot border outline.
-
outline_line_cap
¶ property type: outline_line_cap:Enum(‘butt’, ‘round’, ‘square’)
The line cap for the plot border outline.
-
outline_line_color
¶ property type: outline_line_color:ColorSpec(String, Dict(String, Either(String, Color)), Color)
The line color for the plot border outline.
-
outline_line_dash
¶ property type: outline_line_dash:DashPattern
The line dash for the plot border outline.
-
outline_line_dash_offset
¶ property type: outline_line_dash_offset:Int
The line dash offset for the plot border outline.
-
outline_line_join
¶ property type: outline_line_join:Enum(‘miter’, ‘round’, ‘bevel’)
The line join for the plot border outline.
-
outline_line_width
¶ property type: outline_line_width:NumberSpec(String, Dict(String, Either(String, Float)), Float)
The line width for the plot border outline.
-
plot_height
¶ property type: plot_height:Int
Total height of the entire plot (including any axes, titles, border padding, etc.)
Note
This corresponds directly to the height of the HTML canvas that will be used.
-
plot_width
¶ property type: plot_width:Int
Total width of the entire plot (including any axes, titles, border padding, etc.)
Note
This corresponds directly to the width of the HTML canvas that will be used.
-
renderers
¶ property type: renderers:List(Instance(Renderer))
A list of all renderers for this plot, including guides and annotations in addition to glyphs and markers.
This property can be manipulated by hand, but the
add_glyph
andadd_layout
methods are recommended to help make sure all necessary setup is performed.
-
responsive
¶ property type: responsive:Bool
If True, the plot will automatically resize based on the size of its container. The aspect ratio of the plot will be preserved, but
plot_width
andplot_height
will act only to set the initial aspect ratio. .. warning:The responsive setting is known not to work with HBox layout and may not work in combination with other widgets or layouts.
-
right
¶ property type: right:List(Instance(Renderer))
A list of renderers to occupy the area to the right of the plot.
-
title
¶ property type: title:String
A title for the plot.
-
title_standoff
¶ property type: title_standoff:Int
How far (in screen units) to place a title away from the central plot region.
-
title_text_align
¶ property type: title_text_align:Enum(‘left’, ‘right’, ‘center’)
The text align for the plot title.
-
title_text_alpha
¶ property type: title_text_alpha:NumberSpec(String, Dict(String, Either(String, Float)), Float)
The text alpha for the plot title.
-
title_text_baseline
¶ property type: title_text_baseline:Enum(‘top’, ‘middle’, ‘bottom’, ‘alphabetic’, ‘hanging’)
The text baseline for the plot title.
-
title_text_color
¶ property type: title_text_color:ColorSpec(String, Dict(String, Either(String, Color)), Color)
The text color for the plot title.
-
title_text_font
¶ property type: title_text_font:String
The text font for the plot title.
-
title_text_font_size
¶ property type: title_text_font_size:FontSizeSpec(String, Dict(String, Either(String, List(String))), List(String))
The text font size for the plot title.
-
title_text_font_style
¶ property type: title_text_font_style:Enum(‘normal’, ‘italic’, ‘bold’)
The text font style for the plot title.
-
tool_events
¶ property type: tool_events:Instance(ToolEvents)
A ToolEvents object to share and report tool events.
-
toolbar_location
¶ property type: toolbar_location:Enum(‘above’, ‘below’, ‘left’, ‘right’)
Where the toolbar will be located. If set to None, no toolbar will be attached to the plot.
-
tools
¶ property type: tools:List(Instance(Tool))
A list of tools to add to the plot.
-
v_symmetry
¶ property type: v_symmetry:Bool
Whether the total vertical padding on both sides of the plot will be made equal (the top or bottom padding amount, whichever is larger).
-
webgl
¶ property type: webgl:Bool
Whether WebGL is enabled for this plot. If True, the glyphs that support this will render via WebGL instead of the 2D canvas.
-
x_mapper_type
¶ property type: x_mapper_type:Either(Auto, String)
What kind of mapper to use to convert x-coordinates in data space into x-coordinates in screen space.
Typically this can be determined automatically, but this property can be useful to, e.g., show datetime values as floating point “seconds since epoch” instead of formatted dates.
-
x_range
¶ property type: x_range:Instance(Range)
The (default) data range of the horizontal dimension of the plot.
-
y_mapper_type
¶ property type: y_mapper_type:Either(Auto, String)
What kind of mapper to use to convert y-coordinates in data space into y-coordinates in screen space.
Typically this can be determined automatically, but this property can be useful to, e.g., show datetime values as floating point “seconds since epoch” instead of formatted dates
-
y_range
¶ property type: y_range:Instance(Range)
The (default) data range of the vertical dimension of the plot.
-