figure#

class figure(*args: Any, id: ID | None = None, **kwargs: Any)[source]#

Bases: Plot, GlyphAPI

Create a new figure for plotting.

A subclass of Plot that simplifies plot creation with default axes, grids, tools, etc.

Figure objects have many glyph methods that can be used to draw vectorized graphical glyphs:

There is a scatter function that can be parameterized by marker type:

There are also specialized methods for stacking bars:

As well as one specialized method for making simple hexbin plots:

In addition to all the figure property attributes, the following options are also accepted:

Keyword Args:

active_drag (Nullable(Either(Auto, String, Instance(Drag))))

Which drag tool should initially be active. (default: ‘auto’)

active_inspect (Nullable(Either(Auto, String, Instance(InspectTool), Seq(Instance(InspectTool)))))

Which drag tool should initially be active. (default: ‘auto’)

active_multi (Nullable(Either(Auto, String, Instance(GestureTool))))

Specify an active multi-gesture tool, for instance an edit tool or a range tool. (default: ‘auto’)

active_scroll (Nullable(Either(Auto, String, Instance(Scroll))))

Which scroll tool should initially be active. (default: ‘auto’)

active_tap (Nullable(Either(Auto, String, Instance(Tap))))

Which tap tool should initially be active. (default: ‘auto’)

tools (Either(String, Seq(Either(String, Instance(Tool)))))

Tools the plot should start with. (default: ‘pan,wheel_zoom,box_zoom,save,reset,help’)

tooltips (Nullable(Either(Instance(Template), String, List)))

An optional argument to configure tooltips for the Figure. This argument accepts the same values as the HoverTool.tooltips property. If a hover tool is specified in the tools argument, this value will override that hover tools tooltips value. If no hover tool is specified in the tools argument, then passing tooltips here will cause one to be created and added. (default: None)

x_axis_label (Nullable(TextLike))

A label for the x-axis. (default: ‘’)

x_axis_location (Nullable(Enum(VerticalLocation)))

Where the x-axis should be located. (default: ‘below’)

x_axis_type (Nullable(Either(Auto, Enum(Enumeration(linear, log, datetime, mercator)))))

The type of the x-axis. (default: ‘auto’)

x_minor_ticks (Either(Auto, Int))

Number of minor ticks between adjacent x-axis major ticks. (default: ‘auto’)

x_range (Either(Instance(Range), Either(Tuple(Float, Float), Tuple(Datetime, Datetime), Tuple(TimeDelta, TimeDelta)), Seq(String), Object, Object))

Customize the x-range of the plot. (default: DataRange1d(id=’p128772’, …))

y_axis_label (Nullable(TextLike))

A label for the y-axis. (default: ‘’)

y_axis_location (Nullable(Enum(HorizontalLocation)))

Where the y-axis should be located. (default: ‘left’)

y_axis_type (Nullable(Either(Auto, Enum(Enumeration(linear, log, datetime, mercator)))))

The type of the y-axis. (default: ‘auto’)

y_minor_ticks (Either(Auto, Int))

Number of minor ticks between adjacent y-axis major ticks. (default: ‘auto’)

y_range (Either(Instance(Range), Either(Tuple(Float, Float), Tuple(Datetime, Datetime), Tuple(TimeDelta, TimeDelta)), Seq(String), Object, Object))

Customize the y-range of the plot. (default: DataRange1d(id=’p128773’, …))

Public Data Attributes:

plot

coordinates

Inherited from Plot

xaxis

Splattable list of Axis objects for the x dimension.

yaxis

Splattable list of Axis objects for the y dimension.

axis

Splattable list of Axis objects.

legend

Splattable list of Legend objects.

hover

Splattable list of HoverTool objects.

xgrid

Splattable list of Grid objects for the x dimension.

ygrid

Splattable list of Grid objects for the y dimension.

grid

Splattable list of Grid objects.

tools

x_range

The (default) data range of the horizontal dimension of the plot.

y_range

The (default) data range of the vertical dimension of the plot.

x_scale

What kind of scale to use to convert x-coordinates in data space into x-coordinates in screen space.

y_scale

What kind of scale to use to convert y-coordinates in data space into y-coordinates in screen space.

extra_x_ranges

Additional named ranges to make available for mapping x-coordinates.

extra_y_ranges

Additional named ranges to make available for mapping y-coordinates.

extra_x_scales

Additional named scales to make available for mapping x-coordinates.

extra_y_scales

Additional named scales to make available for mapping y-coordinates.

hidpi

Whether to use HiDPI mode when available.

title

A title for the plot.

title_location

Where the title will be located.

outline_line_color

The line color for the plot border outline.

outline_line_alpha

The line alpha for the plot border outline.

outline_line_width

The line width for the plot border outline.

outline_line_join

The line join for the plot border outline.

outline_line_cap

The line cap for the plot border outline.

outline_line_dash

The line dash for the plot border outline.

outline_line_dash_offset

The line dash offset for the plot border outline.

renderers

A list of all glyph renderers for this plot.

toolbar

The toolbar associated with this plot which holds all the tools.

toolbar_location

Where the toolbar will be located.

toolbar_sticky

Stick the toolbar to the edge of the plot.

toolbar_inner

Locate the toolbar inside the frame.

left

A list of renderers to occupy the area to the left of the plot.

right

A list of renderers to occupy the area to the right of the plot.

above

A list of renderers to occupy the area above of the plot.

below

A list of renderers to occupy the area below of the plot.

center

A list of renderers to occupy the center area (frame) of the plot.

frame_width

The width of a plot frame or the inner width of a plot, excluding any axes, titles, border padding, etc.

frame_height

The height of a plot frame or the inner height of a plot, excluding any axes, titles, border padding, etc.

frame_align

Allows to specify which frame edges to align in multiple-plot layouts.

inner_width

This is the exact width of the plotting canvas, i.e. the width of the actual plot, without toolbars etc.

inner_height

This is the exact height of the plotting canvas, i.e. the height of the actual plot, without toolbars etc.

outer_width

This is the exact width of the layout, i.e. the height of the actual plot, with toolbars etc.

outer_height

This is the exact height of the layout, i.e. the height of the actual plot, with toolbars etc.

background_fill_color

The fill color for the plot background style.

background_fill_alpha

The fill alpha for the plot background style.

border_fill_color

The fill color for the plot border style.

border_fill_alpha

The fill alpha for the plot border style.

min_border_top

Minimum size in pixels of the padding region above the top of the central plot region.

min_border_bottom

Minimum size in pixels of the padding region below the bottom of the central plot region.

min_border_left

Minimum size in pixels of the padding region to the left of the central plot region.

min_border_right

Minimum size in pixels of the padding region to the right of the central plot region.

min_border

A convenience property to set all all the min_border_X properties to the same value.

lod_factor

Decimation factor to use when applying level-of-detail decimation.

lod_threshold

A number of data points, above which level-of-detail downsampling may be performed by glyph renderers.

lod_interval

Interval (in ms) during which an interactive tool event will enable level-of-detail downsampling.

lod_timeout

Timeout (in ms) for checking whether interactive tool events are still occurring.

output_backend

Specify the output backend for the plot area.

match_aspect

Specify the aspect ratio behavior of the plot.

aspect_scale

A value to be given for increased aspect ratio control.

reset_policy

How a plot should respond to being reset.

hold_render

When set to True all requests to repaint the plot will be hold off.

Inherited from LayoutDOM

background

disabled

Whether the widget will be disabled when rendered.

width

The width of the component (in pixels).

height

The height of the component (in pixels).

min_width

Minimal width of the component (in pixels) if width is adjustable.

min_height

Minimal height of the component (in pixels) if height is adjustable.

max_width

Maximal width of the component (in pixels) if width is adjustable.

max_height

Maximal height of the component (in pixels) if height is adjustable.

margin

Allows to create additional space around the component.

width_policy

Describes how the component should maintain its width.

height_policy

Describes how the component should maintain its height.

aspect_ratio

Describes the proportional relationship between component's width and height.

flow_mode

Defines whether the layout will flow in the block or inline dimension.

sizing_mode

How the component should size itself.

align

The alignment point within the parent container.

css_classes

A list of CSS class names to add to this DOM element.

context_menu

A menu to display when user right clicks on the component.

resizable

Whether the layout is interactively resizable, and if so in which dimensions.

Inherited from UIElement

visible

Whether the component should be displayed on screen.

classes

List of additional CSS classes to add to the underlying DOM element.

styles

Inline CSS styles applied to the underlying DOM element.

stylesheets

Additional style-sheets to use for the underlying DOM element.

Inherited from Model

id

ref

name

An arbitrary, user-supplied name for this model.

tags

An optional list of arbitrary, user-supplied values to attach to this model.

js_event_callbacks

A mapping of event names to lists of CustomJS callbacks.

js_property_callbacks

A mapping of attribute names to lists of CustomJS callbacks, to be set up on BokehJS side when the document is created.

subscribed_events

Collection of events that are subscribed to by Python callbacks.

syncable

Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser.

Inherited from HasDocumentRef

document

The Document this model is attached to (can be None)

Inherited from GlyphAPI

plot

coordinates

Public Methods:

__init__(*arg, **kw)

subplot(*[, x_source, y_source, x_scale, ...])

Create a new sub-coordinate system and expose a plotting API.

hexbin(x, y, size[, orientation, palette, ...])

Perform a simple equal-weight hexagonal binning.

harea_stack(stackers, **kw)

Generate multiple HArea renderers for levels stacked left to right.

hbar_stack(stackers, **kw)

Generate multiple HBar renderers for levels stacked left to right.

hline_stack(stackers, **kw)

Generate multiple Line renderers for lines stacked horizontally.

varea_stack(stackers, **kw)

Generate multiple VArea renderers for levels stacked bottom to top.

vbar_stack(stackers, **kw)

Generate multiple VBar renderers for levels stacked bottom to top.

vline_stack(stackers, **kw)

Generate multiple Line renderers for lines stacked vertically.

graph(node_source, edge_source, ...)

Creates a network graph using the given node, edge and layout provider.

contour([x, y, z, levels])

Creates a contour plot of filled polygons and/or contour lines.

Inherited from Plot

__init__(*[, align, aspect_ratio, ...])

select(*args, **kwargs)

Query this object and all of its references for objects that match the given selector.

row(row, gridplot)

Return whether this plot is in a given row of a GridPlot.

column(col, gridplot)

Return whether this plot is in a given column of a GridPlot.

add_layout(obj[, place])

Adds an object to the plot in a specified place.

add_tools(*tools)

Adds tools to the plot.

remove_tools(*tools)

Removes tools from the plot.

add_glyph()

Adds a glyph to the plot with associated data sources and ranges.

add_tile(tile_source[, retina])

Adds new TileRenderer into Plot.renderers

hold(*, render)

Takes care of turning a property on and off within a scope.

Inherited from LayoutDOM

__init__(*[, aspect_ratio, classes, ...])

Inherited from UIElement

__init__(*[, name, styles, stylesheets, ...])

Inherited from Model

__init_subclass__()

This method is called when a class is subclassed.

__new__(cls, *args[, id])

__init__(*args, **kwargs)

__str__()

Return str(self).

__str__()

Return str(self).

destroy()

Clean up references to the document and property

parameters()

Generate Python Parameter values suitable for functions that are derived from the glyph.

js_on_event(event, *callbacks)

js_link(attr, other, other_attr[, attr_selector])

Link two Bokeh model properties using JavaScript.

js_on_change(event, *callbacks)

Attach a CustomJS callback to an arbitrary BokehJS model event.

on_change(attr, *callbacks)

Add a callback on this object to trigger when attr changes.

references()

Returns all Models that this object has references to.

select(selector)

Query this object and all of its references for objects that match the given selector.

select_one(selector)

Query this object and all of its references for objects that match the given selector.

set_select(selector, updates)

Update objects that match a given selector with the specified attribute/value updates.

to_serializable(serializer)

Converts this object to a serializable representation.

trigger(attr, old, new[, hint, setter])

Inherited from HasProps

__init_subclass__()

This method is called when a class is subclassed.

__init__(**properties)

__setattr__(name, value)

Intercept attribute setting on HasProps in order to special case a few situations:

__getattr__(name)

Intercept attribute setting on HasProps in order to special case a few situations:

__str__()

Return str(self).

__str__()

Return str(self).

equals(other)

Structural equality of models.

to_serializable(serializer)

Converts this object to a serializable representation.

set_from_json(name, value, *[, setter])

Set a property value on this object from JSON.

update(**kwargs)

Updates the object's properties from the given keyword arguments.

lookup(name, *[, raises])

Find the PropertyDescriptor for a Bokeh property on a class, given the property name.

properties(*[, _with_props])

Collect the names of properties on this class.

descriptors()

List of property descriptors in the order of definition.

properties_with_refs()

Collect the names of all properties on this class that also have references.

dataspecs()

Collect the names of all DataSpec properties on this class.

properties_with_values(*[, ...])

Collect a dict mapping property names to their values.

query_properties_with_values(query, *[, ...])

Query the properties values of HasProps instances with a predicate.

themed_values()

Get any theme-provided overrides.

apply_theme(property_values)

Apply a set of theme values which will be used rather than defaults, but will not override application-set values.

unapply_theme()

Remove any themed values and restore defaults.

Inherited from Serializable

to_serializable(serializer)

Converts this object to a serializable representation.

Inherited from HasDocumentRef

__init__(*args, **kw)

Inherited from PropertyCallbackManager

__init__(*args, **kw)

on_change(attr, *callbacks)

Add a callback on this object to trigger when attr changes.

remove_on_change(attr, *callbacks)

Remove a callback from this object

trigger(attr, old, new[, hint, setter])

Trigger callbacks for attr on this object.

Inherited from EventCallbackManager

__init__(*args, **kw)

on_event(event, *callbacks)

Run callbacks when the specified event occurs on this Model

Inherited from GlyphAPI

__init__([parent, coordinates])

annular_wedge([x, y, inner_radius, ...])

Configure and add AnnularWedge glyphs to this figure.

annulus([x, y, inner_radius, outer_radius, ...])

Configure and add Annulus glyphs to this figure.

arc([x, y, radius, start_angle, end_angle, ...])

Configure and add Arc glyphs to this figure.

asterisk([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

bezier([x0, y0, x1, y1, cx0, cy0, cx1, cy1, ...])

Configure and add Bezier glyphs to this figure.

circle([x, y, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

block([x, y, width, height, decorations, ...])

Configure and add Block glyphs to this figure.

circle_cross([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

circle_dot([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

circle_x([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

circle_y([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

cross([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

dash([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

diamond([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

diamond_cross([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

diamond_dot([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

dot([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

harea([x1, x2, y, decorations, fill_alpha, ...])

Configure and add HArea glyphs to this figure.

hbar([y, height, right, left, decorations, ...])

Configure and add HBar glyphs to this figure.

ellipse([x, y, width, height, angle, ...])

Configure and add Ellipse glyphs to this figure.

hex([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

hex_dot([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

hex_tile([q, r, aspect_scale, decorations, ...])

Configure and add HexTile glyphs to this figure.

image([image, x, y, dw, dh, dilate, anchor, ...])

Configure and add Image glyphs to this figure.

image_rgba([image, x, y, dw, dh, dilate, ...])

Configure and add ImageRGBA glyphs to this figure.

image_url(url, x, y, w, h[, angle, dilate, ...])

Configure and add ImageURL glyphs to this figure.

inverted_triangle([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

line([x, y, decorations, line_alpha, ...])

Configure and add Line glyphs to this figure.

multi_line([xs, ys, decorations, ...])

Configure and add MultiLine glyphs to this figure.

multi_polygons([xs, ys, decorations, ...])

Configure and add MultiPolygons glyphs to this figure.

patch([x, y, decorations, fill_alpha, ...])

Configure and add Patch glyphs to this figure.

patches([xs, ys, decorations, fill_alpha, ...])

Configure and add Patches glyphs to this figure.

plus([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

quad([left, right, top, bottom, ...])

Configure and add Quad glyphs to this figure.

quadratic([x0, y0, x1, y1, cx, cy, ...])

Configure and add Quadratic glyphs to this figure.

ray([x, y, length, angle, angle_units, ...])

Configure and add Ray glyphs to this figure.

rect([x, y, width, height, angle, dilate, ...])

Configure and add Rect glyphs to this figure.

step([x, y, decorations, line_alpha, ...])

Configure and add Step glyphs to this figure.

segment([x0, y0, x1, y1, decorations, ...])

Configure and add Segment glyphs to this figure.

square([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

square_cross([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

square_dot([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

square_pin([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

square_x([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

star([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

star_dot([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

text([x, y, text, angle, x_offset, ...])

Configure and add Text glyphs to this figure.

triangle([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

triangle_dot([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

triangle_pin([x, y, size, angle, ...])

Configure and add Scatter glyphs to this figure.

varea([x, y1, y2, decorations, fill_alpha, ...])

Configure and add VArea glyphs to this figure.

vbar([x, width, top, bottom, decorations, ...])

Configure and add VBar glyphs to this figure.

wedge([x, y, radius, start_angle, ...])

Configure and add Wedge glyphs to this figure.

x([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

y([x, y, size, angle, angle_units, ...])

Configure and add Scatter glyphs to this figure.

scatter(*args, **kwargs)

Creates a scatter plot of the given x and y items.


above = []#
Type:

List

A list of renderers to occupy the area above of the plot.

align = 'auto'#
Type:

Either(Auto, Enum(Align), Tuple(Enum(Align), Enum(Align)))

The alignment point within the parent container.

This property is useful only if this component is a child element of a layout (e.g. a grid). Self alignment can be overridden by the parent container (e.g. grid track align).

aspect_ratio = None#
Type:

Either(Null, Auto, Float)

Describes the proportional relationship between component’s width and height.

This works if any of component’s dimensions are flexible in size. If set to a number, width / height = aspect_ratio relationship will be maintained. Otherwise, if set to "auto", component’s preferred width and height will be used to determine the aspect (if not set, no aspect will be preserved).

aspect_scale = 1#
Type:

Float

A value to be given for increased aspect ratio control. This value is added multiplicatively to the calculated value required for match_aspect. aspect_scale is defined as the ratio of width over height of the figure.

For example, a plot with aspect_scale value of 2 will result in a square in data units to be drawn on the screen as a rectangle with a pixel width twice as long as its pixel height.

Note

This setting only takes effect if match_aspect is set to True.

background_fill_alpha = 1.0#
Type:

Alpha

The fill alpha for the plot background style.

background_fill_color = '#ffffff'#
Type:

Nullable(Color)

The fill color for the plot background style.

below = []#
Type:

List

A list of renderers to occupy the area below of the plot.

border_fill_alpha = 1.0#
Type:

Alpha

The fill alpha for the plot border style.

border_fill_color = '#ffffff'#
Type:

Nullable(Color)

The fill color for the plot border style.

center = []#
Type:

List

A list of renderers to occupy the center area (frame) of the plot.

classes = []#
Type:

List

List of additional CSS classes to add to the underlying DOM element.

context_menu = None#
Type:

Nullable(Instance(Menu))

A menu to display when user right clicks on the component.

Note

To display a native context menu, the viewer will need to right-click twice. The second click closes the Bokeh context menu and falls back back the native one.

css_classes = []#
Type:

List

A list of CSS class names to add to this DOM element. Note: the class names are simply added as-is, no other guarantees are provided.

It is also permissible to assign from tuples, however these are adapted – the property will always contain a list.

disabled = False#
Type:

Bool

Whether the widget will be disabled when rendered.

If True, the widget will be greyed-out and not responsive to UI events.

extra_x_ranges = {}#
Type:

Dict(String, Instance(Range))

Additional named ranges to make available for mapping x-coordinates.

This is useful for adding additional axes.

extra_x_scales = {}#
Type:

Dict(String, Instance(Scale))

Additional named scales to make available for mapping x-coordinates.

This is useful for adding additional axes.

Note

This feature is experimental and may change in the short term.

extra_y_ranges = {}#
Type:

Dict(String, Instance(Range))

Additional named ranges to make available for mapping y-coordinates.

This is useful for adding additional axes.

extra_y_scales = {}#
Type:

Dict(String, Instance(Scale))

Additional named scales to make available for mapping y-coordinates.

This is useful for adding additional axes.

Note

This feature is experimental and may change in the short term.

flow_mode = 'block'#
Type:

Enum(FlowMode)

Defines whether the layout will flow in the block or inline dimension.

frame_align = True#
Type:

Either(Bool, Struct)

Allows to specify which frame edges to align in multiple-plot layouts.

The default is to align all edges, but users can opt-out from alignment of each individual edge or all edges. Note also that other proproperties may disable alignment of certain edges, especially when using fixed frame size (frame_width and frame_height properties).

frame_height = None#
Type:

Nullable(Int)

The height of a plot frame or the inner height of a plot, excluding any axes, titles, border padding, etc.

frame_width = None#
Type:

Nullable(Int)

The width of a plot frame or the inner width of a plot, excluding any axes, titles, border padding, etc.

height = 600#
Type:

Nullable(NonNegative)

The height of the component (in pixels).

This can be either fixed or preferred height, depending on height sizing policy.

height_policy = 'auto'#
Type:

Either(Auto, Enum(SizingPolicy))

Describes how the component should maintain its height.

"auto"

Use component’s preferred sizing policy.

"fixed"

Use exactly height pixels. Component will overflow if it can’t fit in the available vertical space.

"fit"

Use component’s preferred height (if set) and allow to fit into the available vertical space within the minimum and maximum height bounds (if set). Component’s height neither will be aggressively minimized nor maximized.

"min"

Use as little vertical space as possible, not less than the minimum height (if set). The starting point is the preferred height (if set). The height of the component may shrink or grow depending on the parent layout, aspect management and other factors.

"max"

Use as much vertical space as possible, not more than the maximum height (if set). The starting point is the preferred height (if set). The height of the component may shrink or grow depending on the parent layout, aspect management and other factors.

Note

This is an experimental feature and may change in future. Use it at your own discretion. Prefer using sizing_mode if this level of control isn’t strictly necessary.

hidpi = True#
Type:

Bool

Whether to use HiDPI mode when available.

hold_render = False#
Type:

Bool

When set to True all requests to repaint the plot will be hold off.

This is useful when periodically updating many glyphs. For example, let’s assume we have 10 lines on a plot, each with its own datasource. We stream to all of them every second in a for loop like so:

for line in lines:
    line.stream(new_points())

The problem with this code is that every stream triggers a re-rendering of the plot. Even tough repainting only on the last stream would produce almost identical visual effect. Especially for lines with many points this becomes computationally expensive and can freeze your browser. Using a convenience method hold, we can control when rendering is initiated like so:

with plot.hold(render=True):
    for line in lines:
        line.stream(new_points())

In this case we render newly appended points only after the last stream.

inner_height = 0#
Type:

Readonly

This is the exact height of the plotting canvas, i.e. the height of the actual plot, without toolbars etc. Note this is computed in a web browser, so this property will work only in backends capable of bidirectional communication (server, notebook).

Note

This is an experimental feature and the API may change in near future.

inner_width = 0#
Type:

Readonly

This is the exact width of the plotting canvas, i.e. the width of the actual plot, without toolbars etc. Note this is computed in a web browser, so this property will work only in backends capable of bidirectional communication (server, notebook).

Note

This is an experimental feature and the API may change in near future.

left = []#
Type:

List

A list of renderers to occupy the area to the left of the plot.

lod_factor = 10#
Type:

Int

Decimation factor to use when applying level-of-detail decimation.

lod_interval = 300#
Type:

Int

Interval (in ms) during which an interactive tool event will enable level-of-detail downsampling.

lod_threshold = 2000#
Type:

Nullable(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 = 500#
Type:

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.

margin = None#
Type:

Nullable(Either(Int, Tuple(Int, Int), Tuple(Int, Int, Int, Int)))

Allows to create additional space around the component. The values in the tuple are ordered as follows - Margin-Top, Margin-Right, Margin-Bottom and Margin-Left, similar to CSS standards. Negative margin values may be used to shrink the space from any direction.

match_aspect = False#
Type:

Bool

Specify the aspect ratio behavior of the plot. Aspect ratio is defined as the ratio of width over height. This property controls whether Bokeh should attempt to match the (width/height) of data space to the (width/height) in pixels of screen space.

Default is False which indicates that the data aspect ratio and the screen aspect ratio vary independently. True indicates that the plot aspect ratio of the axes will match the aspect ratio of the pixel extent the axes. The end result is that a 1x1 area in data space is a square in pixels, and conversely that a 1x1 pixel is a square in data units.

Note

This setting only takes effect when there are two dataranges. This setting only sets the initial plot draw and subsequent resets. It is possible for tools (single axis zoom, unconstrained box zoom) to change the aspect ratio.

Warning

This setting is incompatible with linking dataranges across multiple plots. Doing so may result in undefined behavior.

max_height = None#
Type:

Nullable(NonNegative)

Maximal height of the component (in pixels) if height is adjustable.

max_width = None#
Type:

Nullable(NonNegative)

Maximal width of the component (in pixels) if width is adjustable.

min_border = 5#
Type:

Nullable(Int)

A convenience property to set all all the min_border_X properties to the same value. If an individual border property is explicitly set, it will override min_border.

min_border_bottom = None#
Type:

Nullable(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 = None#
Type:

Nullable(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 = None#
Type:

Nullable(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 = None#
Type:

Nullable(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.

min_height = None#
Type:

Nullable(NonNegative)

Minimal height of the component (in pixels) if height is adjustable.

min_width = None#
Type:

Nullable(NonNegative)

Minimal width of the component (in pixels) if width is adjustable.

name = None#
Type:

Nullable(String)

An arbitrary, user-supplied name for this model.

This name can be useful when querying the document to retrieve specific Bokeh models.

>>> plot.circle([1,2,3], [4,5,6], name="temp")
>>> plot.select(name="temp")
[GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]

Note

No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

outer_height = 0#
Type:

Readonly

This is the exact height of the layout, i.e. the height of the actual plot, with toolbars etc. Note this is computed in a web browser, so this property will work only in backends capable of bidirectional communication (server, notebook).

Note

This is an experimental feature and the API may change in near future.

outer_width = 0#
Type:

Readonly

This is the exact width of the layout, i.e. the height of the actual plot, with toolbars etc. Note this is computed in a web browser, so this property will work only in backends capable of bidirectional communication (server, notebook).

Note

This is an experimental feature and the API may change in near future.

outline_line_alpha = 1.0#
Type:

Alpha

The line alpha for the plot border outline.

outline_line_cap = 'butt'#
Type:

Enum(LineCap)

The line cap for the plot border outline.

outline_line_color = '#e5e5e5'#
Type:

Nullable(Color)

The line color for the plot border outline.

outline_line_dash = []#
Type:

DashPattern

The line dash for the plot border outline.

outline_line_dash_offset = 0#
Type:

Int

The line dash offset for the plot border outline.

outline_line_join = 'bevel'#
Type:

Enum(LineJoin)

The line join for the plot border outline.

outline_line_width = 1#
Type:

Float

The line width for the plot border outline.

output_backend = 'canvas'#
Type:

Enum(OutputBackend)

Specify the output backend for the plot area. Default is HTML5 Canvas.

Note

When set to webgl, glyphs without a WebGL rendering implementation will fall back to rendering onto 2D canvas.

renderers = []#
Type:

List

A list of all glyph renderers for this plot.

This property can be manipulated by hand, but the add_glyph is recommended to help make sure all necessary setup is performed.

reset_policy = 'standard'#
Type:

Enum(ResetPolicy)

How a plot should respond to being reset. By deafult, the standard actions are to clear any tool state history, return plot ranges to their original values, undo all selections, and emit a Reset event. If customization is desired, this property may be set to "event_only", which will suppress all of the actions except the Reset event.

resizable = False#
Type:

Either(Bool, Enum(Dimensions))

Whether the layout is interactively resizable, and if so in which dimensions.

right = []#
Type:

List

A list of renderers to occupy the area to the right of the plot.

sizing_mode = None#
Type:

Nullable(Enum(SizingMode))

How the component should size itself.

This is a high-level setting for maintaining width and height of the component. To gain more fine grained control over sizing, use width_policy, height_policy and aspect_ratio instead (those take precedence over sizing_mode).

Possible scenarios:

"inherit"

The sizing mode is inherited from the parent layout. If there is no parent layout (or parent is not a layout), then this value is treated as if no value for sizing_mode was provided.

"fixed"

Component is not responsive. It will retain its original width and height regardless of any subsequent browser window resize events.

"stretch_width"

Component will responsively resize to stretch to the available width, without maintaining any aspect ratio. The height of the component depends on the type of the component and may be fixed or fit to component’s contents.

"stretch_height"

Component will responsively resize to stretch to the available height, without maintaining any aspect ratio. The width of the component depends on the type of the component and may be fixed or fit to component’s contents.

"stretch_both"

Component is completely responsive, independently in width and height, and will occupy all the available horizontal and vertical space, even if this changes the aspect ratio of the component.

"scale_width"

Component will responsively resize to stretch to the available width, while maintaining the original or provided aspect ratio.

"scale_height"

Component will responsively resize to stretch to the available height, while maintaining the original or provided aspect ratio.

"scale_both"

Component will responsively resize to both the available width and height, while maintaining the original or provided aspect ratio.

styles = {}#
Type:

Either(Dict(String, Nullable(String)), Instance(Styles))

Inline CSS styles applied to the underlying DOM element.

stylesheets = []#
Type:

List

Additional style-sheets to use for the underlying DOM element.

Note that all bokeh’s components use shadow DOM, thus any included style sheets must reflect that, e.g. use :host CSS pseudo selector to access the root DOM element.

syncable = True#
Type:

Bool

Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

Note

Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work.

tags = []#
Type:

List

An optional list of arbitrary, user-supplied values to attach to this model.

This data can be useful when querying the document to retrieve specific Bokeh models:

>>> r = plot.circle([1,2,3], [4,5,6])
>>> r.tags = ["foo", 10]
>>> plot.select(tags=['foo', 10])
[GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]

Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

Note

No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason.

title = Title(id='p131764', ...)#
Type:

Either(Null, Instance(Title))

A title for the plot. Can be a text string or a Title annotation.

title_location = 'above'#
Type:

Nullable(Enum(Location))

Where the title will be located. Titles on the left or right side will be rotated.

toolbar = Toolbar(id='p131857', ...)#
Type:

Instance(Toolbar)

The toolbar associated with this plot which holds all the tools. It is automatically created with the plot if necessary.

toolbar_inner = False#
Type:

Bool

Locate the toolbar inside the frame. Setting this property to True makes most sense with auto-hidden toolbars.

toolbar_location = 'right'#
Type:

Nullable(Enum(Location))

Where the toolbar will be located. If set to None, no toolbar will be attached to the plot.

toolbar_sticky = True#
Type:

Bool

Stick the toolbar to the edge of the plot. Default: True. If False, the toolbar will be outside of the axes, titles etc.

visible = True#
Type:

Bool

Whether the component should be displayed on screen.

width = 600#
Type:

Nullable(NonNegative)

The width of the component (in pixels).

This can be either fixed or preferred width, depending on width sizing policy.

width_policy = 'auto'#
Type:

Either(Auto, Enum(SizingPolicy))

Describes how the component should maintain its width.

"auto"

Use component’s preferred sizing policy.

"fixed"

Use exactly width pixels. Component will overflow if it can’t fit in the available horizontal space.

"fit"

Use component’s preferred width (if set) and allow it to fit into the available horizontal space within the minimum and maximum width bounds (if set). Component’s width neither will be aggressively minimized nor maximized.

"min"

Use as little horizontal space as possible, not less than the minimum width (if set). The starting point is the preferred width (if set). The width of the component may shrink or grow depending on the parent layout, aspect management and other factors.

"max"

Use as much horizontal space as possible, not more than the maximum width (if set). The starting point is the preferred width (if set). The width of the component may shrink or grow depending on the parent layout, aspect management and other factors.

Note

This is an experimental feature and may change in future. Use it at your own discretion. Prefer using sizing_mode if this level of control isn’t strictly necessary.

x_range = DataRange1d(id='p132180', ...)#
Type:

Instance(Range)

The (default) data range of the horizontal dimension of the plot.

x_scale = LinearScale(id='p132227', ...)#
Type:

Instance(Scale)

What kind of scale to use to convert x-coordinates in data space into x-coordinates in screen space.

y_range = DataRange1d(id='p132274', ...)#
Type:

Instance(Range)

The (default) data range of the vertical dimension of the plot.

y_scale = LinearScale(id='p132321', ...)#
Type:

Instance(Scale)

What kind of scale to use to convert y-coordinates in data space into y-coordinates in screen space.

add_glyph(source_or_glyph: Glyph | ColumnarDataSource, glyph: Glyph | None = None, **kwargs: Any) GlyphRenderer#

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:
  • the (Any additional keyword arguments are passed on as-is to) –

  • initializer. (Glyph) –

Returns:

GlyphRenderer

add_layout(obj: Renderer, place: Literal['above', 'below', 'left', 'right', 'center'] = 'center') None#

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: TileSource | xyzservices.TileProvider | str, retina: bool = False, **kwargs: Any) TileRenderer#

Adds new TileRenderer into Plot.renderers

Parameters:
Keyword Arguments:

renderer (Additional keyword arguments are passed on as-is to the tile) –

Returns:

TileRenderer

Return type:

TileRenderer

add_tools(*tools: Tool) None#

Adds tools to the plot.

Parameters:

*tools (Tool) – the tools to add to the Plot

Returns:

None

annular_wedge(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), inner_radius=Field(field='inner_radius', transform=Unspecified, units=Unspecified), outer_radius=Field(field='outer_radius', transform=Unspecified, units=Unspecified), start_angle=Field(field='start_angle', transform=Unspecified, units=Unspecified), end_angle=Field(field='end_angle', transform=Unspecified, units=Unspecified), direction='anticlock', *, decorations=[], end_angle_units='rad', fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, inner_radius_units='data', line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, outer_radius_units='data', start_angle_units='rad', syncable=True, tags=[], **kwargs)#

Configure and add AnnularWedge glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-coordinates of the center of the annular wedges. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-coordinates of the center of the annular wedges. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • inner_radius (DistanceSpec, optional) – The inner radii of the annular wedges. (default: Field(field=’inner_radius’, transform=Unspecified, units=Unspecified))

  • outer_radius (DistanceSpec, optional) – The outer radii of the annular wedges. (default: Field(field=’outer_radius’, transform=Unspecified, units=Unspecified))

  • start_angle (AngleSpec, optional) – The angles to start the annular wedges, as measured from the horizontal. (default: Field(field=’start_angle’, transform=Unspecified, units=Unspecified))

  • end_angle (AngleSpec, optional) – The angles to end the annular wedges, as measured from the horizontal. (default: Field(field=’end_angle’, transform=Unspecified, units=Unspecified))

  • direction (Enum(Direction), optional) – Which direction to stroke between the start and end angles. (default: ‘anticlock’)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • end_angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the annular wedges. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the annular wedges. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the annular wedges. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the annular wedges. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the annular wedges. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the annular wedges.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the annular wedges. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the annular wedges. (default: 1.0)

  • inner_radius_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the annular wedges. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the annular wedges. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the annular wedges. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the annular wedges. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the annular wedges. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the annular wedges. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the annular wedges. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • outer_radius_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • start_angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

annulus(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), inner_radius=Field(field='inner_radius', transform=Unspecified, units=Unspecified), outer_radius=Field(field='outer_radius', transform=Unspecified, units=Unspecified), *, decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, inner_radius_units='data', line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, outer_radius_units='data', syncable=True, tags=[], **kwargs)#

Configure and add Annulus glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-coordinates of the center of the annuli. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-coordinates of the center of the annuli. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • inner_radius (DistanceSpec, optional) – The inner radii of the annuli. (default: Field(field=’inner_radius’, transform=Unspecified, units=Unspecified))

  • outer_radius (DistanceSpec, optional) – The outer radii of the annuli. (default: Field(field=’outer_radius’, transform=Unspecified, units=Unspecified))

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the annuli. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the annuli. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the annuli. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the annuli. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the annuli. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the annuli.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the annuli. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the annuli. (default: 1.0)

  • inner_radius_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the annuli. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the annuli. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the annuli. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the annuli. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the annuli. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the annuli. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the annuli. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • outer_radius_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.annulus(x=[1, 2, 3], y=[1, 2, 3], color="#7FC97F",
             inner_radius=0.2, outer_radius=0.5)

show(plot)
apply_theme(property_values: dict[str, Any]) None#

Apply a set of theme values which will be used rather than defaults, but will not override application-set values.

The passed-in dictionary may be kept around as-is and shared with other instances to save memory (so neither the caller nor the HasProps instance should modify it).

Parameters:

property_values (dict) – theme values to use in place of defaults

Returns:

None

arc(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), radius=Field(field='radius', transform=Unspecified, units=Unspecified), start_angle=Field(field='start_angle', transform=Unspecified, units=Unspecified), end_angle=Field(field='end_angle', transform=Unspecified, units=Unspecified), direction='anticlock', *, decorations=[], end_angle_units='rad', line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, radius_units='data', start_angle_units='rad', syncable=True, tags=[], **kwargs)#

Configure and add Arc glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-coordinates of the center of the arcs. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-coordinates of the center of the arcs. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • radius (DistanceSpec, optional) – Radius of the arc. (default: Field(field=’radius’, transform=Unspecified, units=Unspecified))

  • start_angle (AngleSpec, optional) – The angles to start the arcs, as measured from the horizontal. (default: Field(field=’start_angle’, transform=Unspecified, units=Unspecified))

  • end_angle (AngleSpec, optional) – The angles to end the arcs, as measured from the horizontal. (default: Field(field=’end_angle’, transform=Unspecified, units=Unspecified))

  • direction (Enum(Direction), optional) – Which direction to stroke between the start and end angles. (default: ‘anticlock’)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • end_angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the arcs. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the arcs. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the arcs. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the arcs. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the arcs. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the arcs. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the arcs. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • radius_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • start_angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

asterisk(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.asterisk(x=[1,2,3], y=[1,2,3], size=20, color="#F0027F")

show(plot)
bezier(x0=Field(field='x0', transform=Unspecified, units=Unspecified), y0=Field(field='y0', transform=Unspecified, units=Unspecified), x1=Field(field='x1', transform=Unspecified, units=Unspecified), y1=Field(field='y1', transform=Unspecified, units=Unspecified), cx0=Field(field='cx0', transform=Unspecified, units=Unspecified), cy0=Field(field='cy0', transform=Unspecified, units=Unspecified), cx1=Field(field='cx1', transform=Unspecified, units=Unspecified), cy1=Field(field='cy1', transform=Unspecified, units=Unspecified), *, decorations=[], line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Bezier glyphs to this figure.

Parameters:
  • x0 (NumberSpec, optional) – The x-coordinates of the starting points. (default: Field(field=’x0’, transform=Unspecified, units=Unspecified))

  • y0 (NumberSpec, optional) – The y-coordinates of the starting points. (default: Field(field=’y0’, transform=Unspecified, units=Unspecified))

  • x1 (NumberSpec, optional) – The x-coordinates of the ending points. (default: Field(field=’x1’, transform=Unspecified, units=Unspecified))

  • y1 (NumberSpec, optional) – The y-coordinates of the ending points. (default: Field(field=’y1’, transform=Unspecified, units=Unspecified))

  • cx0 (NumberSpec, optional) – The x-coordinates of first control points. (default: Field(field=’cx0’, transform=Unspecified, units=Unspecified))

  • cy0 (NumberSpec, optional) – The y-coordinates of first control points. (default: Field(field=’cy0’, transform=Unspecified, units=Unspecified))

  • cx1 (NumberSpec, optional) – The x-coordinates of second control points. (default: Field(field=’cx1’, transform=Unspecified, units=Unspecified))

  • cy1 (NumberSpec, optional) – The y-coordinates of second control points. (default: Field(field=’cy1’, transform=Unspecified, units=Unspecified))

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • line_alpha (AlphaSpec, optional) – The line alpha values for the Bezier curves. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the Bezier curves. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the Bezier curves. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the Bezier curves. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the Bezier curves. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the Bezier curves. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the Bezier curves. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

block(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), width=1, height=1, *, decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Block glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-coordinates of the centers of the blocks. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-coordinates of the centers of the blocks. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • width (NumberSpec, optional) – The widths of the blocks. (default: 1)

  • height (NumberSpec, optional) – The heights of the blocks. (default: 1)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the blocks. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the blocks. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the blocks. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the blocks. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the blocks. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the blocks.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the blocks. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the blocks. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the blocks. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the blocks. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the blocks. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the blocks. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the blocks. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the blocks. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the blocks. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.block(x=[1, 2, 3], y=[1,2,3], width=0.5, height=1, , color="#CAB2D6")

show(plot)
circle(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), *, angle=0.0, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, radius=None, radius_dimension='x', radius_units='data', size=4, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • radius (NullDistanceSpec) –

    The radius values for circle markers (in data units, by default).

    Note

    Circle markers are slightly unusual in that they support specifying a radius in addition to a size. Only one of radius or size should be given.

    Warning

    Note that Circle glyphs are always drawn as circles on the screen, even in cases where the data space aspect ratio is not 1-1. In all cases where radius values are specified, the “distance” for the radius is measured along the dimension specified by radius_dimension. If the aspect ratio is very large or small, the drawn circles may appear much larger or smaller than expected. See #626 for more information.

  • radius_dimension (Enum(Enumeration(x, y, max, min)), optional) –

    What dimension to measure circle radii along.

    When the data space aspect ratio is not 1-1, then the size of the drawn circles depends on what direction is used to measure the “distance” of the radius. This property allows that direction to be controlled.

    Setting this dimension to ‘max’ will calculate the radius on both the x and y dimensions and use the maximum of the two, ‘min’ selects the minimum. (default: ‘x’)

  • radius_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Note

Only one of size or radius should be provided. Note that radius defaults to data units.

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.circle(x=[1, 2, 3], y=[1, 2, 3], size=20)

show(plot)
circle_cross(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.circle_cross(x=[1,2,3], y=[4,5,6], size=20,
                  color="#FB8072", fill_alpha=0.2, line_width=2)

show(plot)
circle_dot(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.circle_dot(x=[1,2,3], y=[4,5,6], size=20,
                color="#FB8072", fill_color=None)

show(plot)
circle_x(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.circle_x(x=[1, 2, 3], y=[1, 2, 3], size=20,
              color="#DD1C77", fill_alpha=0.2)

show(plot)
circle_y(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.circle_y(x=[1, 2, 3], y=[1, 2, 3], size=20,
              color="#DD1C77", fill_alpha=0.2)

show(plot)
column(col, gridplot)#

Return whether this plot is in a given column of a GridPlot.

Parameters:
  • col (int) – index of the column to test

  • gridplot (GridPlot) – the GridPlot to check

Returns:

bool

contour(x: ArrayLike | None = None, y: ArrayLike | None = None, z: ArrayLike | np.ma.MaskedArray | None = None, levels: ArrayLike | None = None, **visuals) ContourRenderer[source]#

Creates a contour plot of filled polygons and/or contour lines.

Filled contour polygons are calculated if fill_color is set, contour lines if line_color is set.

Parameters:
  • x (array-like[float] of shape (ny, nx) or (nx,), optional) – The x-coordinates of the z values. May be 2D with the same shape as z.shape, or 1D with length nx = z.shape[1]. If not specified are assumed to be np.arange(nx). Must be ordered monotonically.

  • y (array-like[float] of shape (ny, nx) or (ny,), optional) – The y-coordinates of the z values. May be 2D with the same shape as z.shape, or 1D with length ny = z.shape[0]. If not specified are assumed to be np.arange(ny). Must be ordered monotonically.

  • z (array-like[float] of shape (ny, nx)) – A 2D NumPy array of gridded values to calculate the contours of. May be a masked array, and any invalid values (np.inf or np.nan) will also be masked out.

  • levels (array-like[float]) – The z-levels to calculate the contours at, must be increasing. Contour lines are calculated at each level and filled contours are calculated between each adjacent pair of levels so the number of sets of contour lines is len(levels) and the number of sets of filled contour polygons is len(levels)-1.

  • **visuals

    fill properties, hatch properties and line properties Fill and hatch properties are used for filled contours, line properties for line contours. If using vectorized properties then the correct number must be used, len(levels) for line properties and len(levels)-1 for fill and hatch properties.

    fill_color and line_color are more flexible in that they will accept longer sequences and interpolate them to the required number using linear_palette(), and also accept palette collections (dictionaries mapping from integer length to color sequence) such as bokeh.palettes.Cividis.

cross(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.cross(x=[1, 2, 3], y=[1, 2, 3], size=20,
           color="#E6550D", line_width=2)

show(plot)
dash(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.dash(x=[1, 2, 3], y=[1, 2, 3], size=[10,20,25],
          color="#99D594", line_width=2)

show(plot)
classmethod dataspecs() dict[str, DataSpec]#

Collect the names of all DataSpec properties on this class.

This method always traverses the class hierarchy and includes properties defined on any parent classes.

Returns:

names of DataSpec properties

Return type:

set[str]

classmethod descriptors() list[PropertyDescriptor[Any]]#

List of property descriptors in the order of definition.

destroy() None#

Clean up references to the document and property

diamond(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.diamond(x=[1, 2, 3], y=[1, 2, 3], size=20,
             color="#1C9099", line_width=2)

show(plot)
diamond_cross(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.diamond_cross(x=[1, 2, 3], y=[1, 2, 3], size=20,
                   color="#386CB0", fill_color=None, line_width=2)

show(plot)
diamond_dot(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.diamond_dot(x=[1, 2, 3], y=[1, 2, 3], size=20,
                 color="#386CB0", fill_color=None)

show(plot)
dot(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.dot(x=[1, 2, 3], y=[1, 2, 3], size=20, color="#386CB0")

show(plot)
ellipse(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), width=Field(field='width', transform=Unspecified, units=Unspecified), height=Field(field='height', transform=Unspecified, units=Unspecified), angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, height_units='data', line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], width_units='data', **kwargs)#

Configure and add Ellipse glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-coordinates of the centers of the ellipses. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-coordinates of the centers of the ellipses. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • width (DistanceSpec, optional) – The widths of each ellipse. (default: Field(field=’width’, transform=Unspecified, units=Unspecified))

  • height (DistanceSpec, optional) – The heights of each ellipse. (default: Field(field=’height’, transform=Unspecified, units=Unspecified))

  • angle (AngleSpec) – The angle the ellipses are rotated from horizontal. [rad] (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the ellipses. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the ellipses. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the ellipses. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the ellipses. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the ellipses. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the ellipses.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the ellipses. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the ellipses. (default: 1.0)

  • height_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the ellipses. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the ellipses. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the ellipses. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the ellipses. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the ellipses. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the ellipses. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the ellipses. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

  • width_units (NotSerialized(Enum(SpatialUnits)), optional) – Units to use for the associated property: screen or data (default: ‘data’)

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.ellipse(x=[1, 2, 3], y=[1, 2, 3], width=30, height=20,
             color="#386CB0", fill_color=None, line_width=2)

show(plot)
equals(other: HasProps) bool#

Structural equality of models.

Parameters:

other (HasProps) – the other instance to compare to

Returns:

True, if properties are structurally equal, otherwise False

graph(node_source, edge_source, layout_provider, **kwargs)[source]#

Creates a network graph using the given node, edge and layout provider.

Parameters:
  • node_source (ColumnDataSource) – a user-supplied data source for the graph nodes. An attempt will be made to convert the object to ColumnDataSource if needed. If none is supplied, one is created for the user automatically.

  • edge_source (ColumnDataSource) – a user-supplied data source for the graph edges. An attempt will be made to convert the object to ColumnDataSource if needed. If none is supplied, one is created for the user automatically.

  • layout_provider (LayoutProvider) – a LayoutProvider instance to provide the graph coordinates in Cartesian space.

  • **kwargsline properties and fill properties

harea(x1=Field(field='x1', transform=Unspecified, units=Unspecified), x2=Field(field='x2', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), *, decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, name=None, syncable=True, tags=[], **kwargs)#

Configure and add HArea glyphs to this figure.

Parameters:
  • x1 (NumberSpec, optional) – The x-coordinates for the points of one side of the area. (default: Field(field=’x1’, transform=Unspecified, units=Unspecified))

  • x2 (NumberSpec, optional) – The x-coordinates for the points of the other side of the area. (default: Field(field=’x2’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-coordinates for the points of the area. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (Alpha, optional) – The fill alpha values for the horizontal directed area. (default: 1.0)

  • fill_color (Nullable(Color), optional) – The fill color values for the horizontal directed area. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the horizontal directed area. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the horizontal directed area. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the horizontal directed area. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the horizontal directed area.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the horizontal directed area. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the horizontal directed area. (default: 1.0)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.harea(x1=[0, 0, 0], x2=[1, 4, 2], y=[1, 2, 3],
           fill_color="#99D594")

show(plot)
harea_stack(stackers, **kw)[source]#

Generate multiple HArea renderers for levels stacked left to right.

Parameters:

stackers (seq[str]) –

a list of data source field names to stack successively for x1 and x2 harea coordinates.

Additionally, the name of the renderer will be set to the value of each successive stacker (this is useful with the special hover variable $name)

Any additional keyword arguments are passed to each call to harea. If a keyword value is a list or tuple, then each call will get one value from the sequence.

Returns:

list[GlyphRenderer]

Examples

Assuming a ColumnDataSource named source with columns 2016 and 2017, then the following call to harea_stack will will create two HArea renderers that stack:

p.harea_stack(['2016', '2017'], y='y', color=['blue', 'red'], source=source)

This is equivalent to the following two separate calls:

p.harea(x1=stack(),       x2=stack('2016'),         y='y', color='blue', source=source, name='2016')
p.harea(x1=stack('2016'), x2=stack('2016', '2017'), y='y', color='red',  source=source, name='2017')
hbar(y=Field(field='y', transform=Unspecified, units=Unspecified), height=1, right=Field(field='right', transform=Unspecified, units=Unspecified), left=0, *, decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add HBar glyphs to this figure.

Parameters:
  • y (NumberSpec, optional) – The y-coordinates of the centers of the horizontal bars. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • height (NumberSpec, optional) – The heights of the vertical bars. (default: 1)

  • right (NumberSpec, optional) – The x-coordinates of the right edges. (default: Field(field=’right’, transform=Unspecified, units=Unspecified))

  • left (NumberSpec) – The x-coordinates of the left edges. (default: 0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the horizontal bars. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the horizontal bars. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the horizontal bars. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the horizontal bars. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the horizontal bars. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the horizontal bars.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the horizontal bars. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the horizontal bars. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the horizontal bars. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the horizontal bars. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the horizontal bars. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the horizontal bars. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the horizontal bars. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the horizontal bars. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the horizontal bars. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.hbar(y=[1, 2, 3], height=0.5, left=0, right=[1,2,3], color="#CAB2D6")

show(plot)
hbar_stack(stackers, **kw)[source]#

Generate multiple HBar renderers for levels stacked left to right.

Parameters:

stackers (seq[str]) –

a list of data source field names to stack successively for left and right bar coordinates.

Additionally, the name of the renderer will be set to the value of each successive stacker (this is useful with the special hover variable $name)

Any additional keyword arguments are passed to each call to hbar. If a keyword value is a list or tuple, then each call will get one value from the sequence.

Returns:

list[GlyphRenderer]

Examples

Assuming a ColumnDataSource named source with columns 2016 and 2017, then the following call to hbar_stack will will create two HBar renderers that stack:

p.hbar_stack(['2016', '2017'], y=10, width=0.9, color=['blue', 'red'], source=source)

This is equivalent to the following two separate calls:

p.hbar(bottom=stack(),       top=stack('2016'),         y=10, width=0.9, color='blue', source=source, name='2016')
p.hbar(bottom=stack('2016'), top=stack('2016', '2017'), y=10, width=0.9, color='red',  source=source, name='2017')
hex(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.hex(x=[1, 2, 3], y=[1, 2, 3], size=[10,20,30], color="#74ADD1")

show(plot)
hex_dot(x=Field(field='x', transform=Unspecified, units=Unspecified), y=Field(field='y', transform=Unspecified, units=Unspecified), size=4, angle=0.0, *, angle_units='rad', decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, hit_dilation=1.0, line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, syncable=True, tags=[], **kwargs)#

Configure and add Scatter glyphs to this figure.

Parameters:
  • x (NumberSpec, optional) – The x-axis coordinates for the center of the markers. (default: Field(field=’x’, transform=Unspecified, units=Unspecified))

  • y (NumberSpec, optional) – The y-axis coordinates for the center of the markers. (default: Field(field=’y’, transform=Unspecified, units=Unspecified))

  • size (SizeSpec, optional) – The size (diameter) values for the markers in screen space units. (default: 4)

  • angle (AngleSpec) – The angles to rotate the markers. (default: 0.0)

  • alpha (float, optional) –

    An alias to set all alpha keyword arguments at once. (default: None)

    Alpha values must be between 0 (fully transparent) and 1 (fully opaque).

    Any explicitly set values for line_alpha, etc. will override this setting.

  • color (color, optional) –

    An alias to set all color keyword arguments at once. (default: None)

    See Color properties in the user guide for different options to define colors.

    Any explicitly set values for line_color, etc. will override this setting.

  • legend_field (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in the browser. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in JavaScript, at the time time the Bokeh content is rendered in the browser. If the data is subsequently updated, the legend will automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_group (str, optional) –

    Specify that the glyph should produce multiple legend entries by grouping them in Python. The value of this parameter is the name of a column in the data source that should be used or the grouping.

    The grouping is performed in Python, before the Bokeh output is sent to a browser. If the date is subsequently updated, the legend will not automatically re-group.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied

  • legend_label (str, optional) –

    Specify that the glyph should produce a single basic legend label in the legend. The legend entry is labeled with the exact text supplied here.

    Note

    Only one of legend_field, legend_group, or legend_label should be supplied.

  • muted (bool, optionall) –

    Whether the glyph should be rendered as muted (default: False)

    For this to be useful, an muted_glyph must be configured on the returned GlyphRender. This can be done by explicitly creating a Glyph to use, or more simply by passing e.g. muted_color, etc. to this glyph function.

  • name (str, optional) –

    An optional user-supplied name to attach to the renderer (default: None)

    Bokeh does not use this value in any way, but it may be useful for searching a Bokeh document to find a specific model.

  • source (ColumnDataSource, optional) –

    A user-supplied data source. (defatult: None)

    If not supplied, Bokeh will automatically construct an internal ColumnDataSource with default column names from the coordinates and other arguments that were passed-in as literal list or array values.

    If supplied, Bokeh will use the supplied data source to drive the glyph. In this case, literal list or arrays may not be used for coordinates or other arguments. Only singular fixed valued (e.g. x=10) or column names in the data source (e.g. x="time") are permitted.

  • view (CDSView, optional) – A view for filtering the data source. (default: None)

  • visible (bool, optional) – Whether the glyph should be rendered. (default: True)

  • x_range_name (str, optional) –

    The name of an extra range to use for mapping x-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • y_range_name (str, optional) –

    The name of an extra range to use for mapping y-coordinates. (default: None)

    If not supplied, then the default y_range of the plot will be used for coordinate mapping.

  • level (RenderLevel, optional) – Specify the render level order for this glyph.

Keyword Arguments:
  • angle_units (NotSerialized(Enum(AngleUnits)), optional) – Units to use for the associated property: deg, rad, grad or turn (default: ‘rad’)

  • decorations (List) –

    A collection of glyph decorations, e.g. arrow heads.

    Use GlyphRenderer.add_decoration() for easy setup for all glyphs of a glyph renderer. Use this property when finer control is needed.

    Note

    Decorations are only for aiding visual appearance of a glyph, but they don’t participate in hit testing, etc. (default: [])

  • fill_alpha (AlphaSpec, optional) – The fill alpha values for the markers. (default: 1.0)

  • fill_color (ColorSpec, optional) – The fill color values for the markers. (default: ‘gray’)

  • hatch_alpha (AlphaSpec, optional) – The hatch alpha values for the markers. (default: 1.0)

  • hatch_color (ColorSpec, optional) – The hatch color values for the markers. (default: ‘black’)

  • hatch_extra (Dict(String, Instance(‘bokeh.models.textures.Texture’))) – The hatch extra values for the markers. (default: {})

  • hatch_pattern (HatchPatternSpec) – The hatch pattern values for the markers.

  • hatch_scale (NumberSpec, optional) – The hatch scale values for the markers. (default: 12.0)

  • hatch_weight (NumberSpec, optional) – The hatch weight values for the markers. (default: 1.0)

  • hit_dilation (Size, optional) – The factor by which to dilate the hit radius which is responsible for defining the range in which a marker responds to interactions with the Hover and Tap tools. (default: 1.0)

  • line_alpha (AlphaSpec, optional) – The line alpha values for the markers. (default: 1.0)

  • line_cap (LineCapSpec, optional) – The line cap values for the markers. (default: ‘butt’)

  • line_color (ColorSpec, optional) – The line color values for the markers. (default: ‘black’)

  • line_dash (DashPatternSpec) – The line dash values for the markers. (default: [])

  • line_dash_offset (IntSpec) – The line dash offset values for the markers. (default: 0)

  • line_join (LineJoinSpec, optional) – The line join values for the markers. (default: ‘bevel’)

  • line_width (NumberSpec, optional) – The line width values for the markers. (default: 1)

  • name (Nullable(String)) –

    An arbitrary, user-supplied name for this model.

    This name can be useful when querying the document to retrieve specific Bokeh models.

    >>> plot.circle([1,2,3], [4,5,6], name="temp")
    >>> plot.select(name="temp")
    [GlyphRenderer(id='399d53f5-73e9-44d9-9527-544b761c7705', ...)]
    

    Note

    No uniqueness guarantees or other conditions are enforced on any names that are provided, nor is the name used directly by Bokeh for any reason.

  • syncable (Bool, optional) –

    Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. Setting to False may be useful to reduce network traffic when dealing with frequently updated objects whose updated values we don’t need.

    Note

    Setting this property to False will prevent any on_change() callbacks on this object from triggering. However, any JS-side callbacks will still work. (default: True)

  • tags (List) –

    An optional list of arbitrary, user-supplied values to attach to this model.

    This data can be useful when querying the document to retrieve specific Bokeh models:

    >>> r = plot.circle([1,2,3], [4,5,6])
    >>> r.tags = ["foo", 10]
    >>> plot.select(tags=['foo', 10])
    [GlyphRenderer(id='1de4c3df-a83d-480a-899b-fb263d3d5dd9', ...)]
    

    Or simply a convenient way to attach any necessary metadata to a model that can be accessed by CustomJS callbacks, etc.

    Note

    No uniqueness guarantees or other conditions are enforced on any tags that are provided, nor are the tags used directly by Bokeh for any reason. (default: [])

It is also possible to set the color and alpha parameters of extra glyphs for selection, nonselection, hover, or muted. To do so, add the relevant prefix to any visual parameter. For example, pass nonselection_alpha to set the line and fill alpha for nonselect, or hover_fill_alpha to set the fill alpha for hover. See the Styling glyphs section of the user guide for full details.

Returns:

GlyphRenderer

Examples

from bokeh.plotting import figure, output_file, show

plot = figure(width=300, height=300)
plot.hex_dot(x=[1, 2, 3], y=[1, 2, 3], size=[10,20,30],
             color="#74ADD1", fill_color=None)

show(plot)
hex_tile(q=Field(field='q', transform=Unspecified, units=Unspecified), r=Field(field='r', transform=Unspecified, units=Unspecified), *, aspect_scale=1.0, decorations=[], fill_alpha=1.0, fill_color='gray', hatch_alpha=1.0, hatch_color='black', hatch_extra={}, hatch_pattern=None, hatch_scale=12.0, hatch_weight=1.0, line_alpha=1.0, line_cap='butt', line_color=None, line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, orientation='pointytop', scale=1.0