I was following the example for What is a Link
? and noticed that this kind of linking does not work with the Plotly backend.
from holoviews.plotting.links import DataLink
from holoviews import opts
import holoviews as hv
import numpy as np
hv.extension("plotly")
scatter1 = hv.Scatter(np.arange(100))
scatter2 = hv.Scatter(np.arange(100)[::-1], 'x2', 'y2')
dlink = DataLink(scatter1, scatter2)
(scatter1 + scatter2)
Is some other linking mechanism needed when using the plotly backend?
This example works fine with the bokeh
backend (just have to specify the tools
).