Combine DynamicMaps without linking

I am having trouble putting together multiple completely separate DynamicMap outputs from hvplot in a single panel.Column. The attached notebook gives a column with two plots, but they are somehow linked together. A clue here is that saving to html with embed=True processes 9 states while saving, when there should really only be 3 + 3. I have tried wrapping the outputs in panel.Pane with linked_axes=False (this is commented out in the attached notebook), but doing so causes the widgets to get dropped from the column.demo.ipynb (3.0 MB)

1 Like

Hi @itcarroll

I also tried this and several alternative approaches without luck.

I believe it’s a bug. Please post it on Github to get it fixed.

Thanks.

Looks like I was just not using the linked_axes argument correctly. It works as an argument to pn.panel not pn.Pane, as in pn.Column().append(pn.panel(obj, linked_axes=False)).

1 Like