Title
PointDraw
Description
A linked streams example demonstrating how to use the BoxDraw stream.
Backends
Bokeh
Tags
streams, linked, position, interactive

In [ ]:
import holoviews as hv
from holoviews import opts, streams
from holoviews.plotting.links import DataLink

hv.extension('bokeh')

The PointDraw stream adds a bokeh tool to the source plot, which allows drawing, dragging and deleting points and making the drawn data available to Python. The tool supports the following actions:

Add point

Tap anywhere on the plot

Move point

Tap and drag an existing point, the point will be dropped once you let go of the mouse button.

Delete point

Tap a point to select it then press BACKSPACE key while the mouse is within the plot area.

As a simple example we will create a PointDraw stream and attach it to a set of Points with a color dimension. By enabling the shared_datasource option on the Layout and casting to Points to a Table we can additionally link two.

We can now add drag and delete points, see the x/y position change in the table and edit the a color for each point in the table. Additionally the empty_value parameter on the PointDraw stream lets us define the value that will be inserted on columns other than the x/y position, which we can use here to set new points to 'black'. Finally we can limit the number of points using the num_objects option, ensuring that once the limit is reached the oldest point is dropped.


In [ ]:
data = ([0, 0.5, 1], [0, 0.5, 0], ['red', 'green', 'blue'])
points = hv.Points(data, vdims='color').redim.range(x=(-.1, 1.1), y=(-.1, 1.1))
point_stream = streams.PointDraw(data=points.columns(), num_objects=10, source=points, empty_value='black')
table = hv.Table(points, ['x', 'y'], 'color')
DataLink(points, table)

(points + table).opts(
    opts.Layout(merge_tools=False),
    opts.Points(active_tools=['point_draw'], color='color', height=400,
                size=10, tools=['hover'], width=400),
    opts.Table(editable=True))

Whenever the data source is edited the data is synced with Python, both in the notebook and when deployed on the bokeh server. The data is made available as a dictionary of columns:


In [ ]:
point_stream.data

Alternatively we can use the element property to get an Element containing the returned data:


In [ ]:
point_stream.element