scatter_selection#

This example shows how to select different behaviours of a selection tool.

Details

Bokeh APIs:

figure.scatter, bokeh.model.select_one, bokeh.model.BoxSelectTool

More info:

Pan/Drag tools

Keywords:

selection, tool, BoxSelectTool

import numpy as np

from bokeh.layouts import column, gridplot
from bokeh.models import BoxSelectTool, Div
from bokeh.plotting import figure, show

x = np.linspace(0, 4*np.pi, 100)
y = np.sin(x)

TOOLS = "wheel_zoom,save,box_select,lasso_select"

div = Div(text="""
<p>Selection behaviour in Bokeh can be configured in various ways. For instance,
the selection event can be set to happen on every mouse move, or only on mouseup.
Additionally the appearance of standard, selected, and non-selected glyphs is
fully customizable.</p>

<p>Make selections on the plots below to see these possibilities.</p>
""")

opts = dict(tools=TOOLS, width=350, height=350)

p1 = figure(title="selection on mouseup", **opts)
p1.scatter(x, y, color="navy", size=6, alpha=0.6)

p2 = figure(title="selection on mousemove", **opts)
p2.scatter(x, y, color="olive", size=6, alpha=0.6, marker="square")
p2.select_one(BoxSelectTool).continuous = True

p3 = figure(title="default highlight", **opts)
p3.scatter(x, y, color="firebrick", alpha=0.5, size=6)

p4 = figure(title="custom highlight", **opts)
p4.scatter(x, y, color="navy", size=6, alpha=0.6, marker="square",
          nonselection_color="orange", nonselection_alpha=0.6)

layout = column(div,
                gridplot([[p1, p2], [p3, p4]], toolbar_location="right"),
                sizing_mode="scale_width")

show(layout)