Bokeh backend#

Bokeh interface layer.

Object creation and I/O#

create_plotting_grid(number[, rows, cols, ...])

Create a chart with a grid of plotting targets in it.

show(chart)

Show the provided bokeh layout.

Geoms#

line(x, y, target, *[, color, alpha, width, ...])

Interface to bokeh for a line plot.

scatter(x, y, target, *[, size, marker, ...])

Interface to bokeh for a scatter plot.

text(x, y, string, target, *[, size, alpha, ...])

Interface to bokeh for adding text to a plot.

Plot appeareance#

title(string, target, *[, size, color])

Interface to bokeh for adding a title to a plot.

ylabel(string, target, *[, size, color])

Interface to bokeh for adding a label to the y axis.

xlabel(string, target, *[, size, color])

Interface to bokeh for adding a label to the x axis.

xticks(ticks, labels, target, **artist_kws)

Interface to bokeh for setting ticks and labels of the x axis.

yticks(ticks, labels, target, **artist_kws)

Interface to bokeh for setting ticks and labels of the y axis.

ticklabel_props(target, *[, axis, size, color])

Interface to bokeh for setting ticks size.

remove_ticks(target, *[, axis])

Interface to bokeh for removing ticks from a plot.

remove_axis(target[, axis])

Interface to bokeh for removing axis from a plot.

Legend#

legend(target, kwarg_list, label_list[, ...])

Generate a legend on a figure given lists of labels and property kwargs.