For questions, use https://discourse.holoviz.org/ instead! This chat is for informal discussions and debugging sessions with developers of the HoloViz.org tools (HoloViews, Datashader, Panel, hvPlot, GeoViews, Param, etc.), but user questions should go to the HoloViz Discourse site so that others won't have to ask them again.
philippjfr on more_async_support
philippjfr on master
Add `execute` method to run cal… (compare)
philippjfr on more_async_support
Unpack partials (compare)
philippjfr on master
Fix styling offset for Tabulato… (compare)
philippjfr on tabulator_style_offset
Basically, with this code:
import holoviews as hv
hv.extension("bokeh")
import numpy as np
from bokeh.models import HoverTool
hover = HoverTool(tooltips=[("foo", "bar")])
opts = dict(
show_legend=True,
color="color",
tools=[hover],
muted_alpha=0.1,
)
(
hv.Polygons(
{("x", "y"): np.random.rand(3, 2), "color": "black"},
label="first",
vdims=["color"],
).opts(**opts)
* hv.Polygons(
{("x", "y"): np.random.rand(3, 2) + 0.2, "color": "blue"},
label="second",
vdims=["color"],
).opts(visible=True, **opts)
).opts(show_legend=True, legend_opts={"click_policy": "hide"})
I want to set one of the plots to muted
where that would have the same result as clicking the legend.