Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix linking elements that are transformed by a Compositor #6003

Merged
merged 9 commits into from
Dec 12, 2023
Prev Previous commit
Next Next commit
remove clone override in Overlay
maximlt committed Dec 1, 2023

Verified

This commit was signed with the committer’s verified signature.
sandhose Quentin Gliech
commit fd6e48f7472de55875f04ebea787adf835e32031
5 changes: 0 additions & 5 deletions holoviews/core/overlay.py
Original file line number Diff line number Diff line change
@@ -287,11 +287,6 @@ def ddims(self):
def shape(self):
raise NotImplementedError

def clone(self, data=None, shared_data=True, new_type=None, link=True, **overrides):
if data is None and link:
overrides['plot_id'] = self._plot_id
return super().clone(data, shared_data=shared_data, new_type=new_type, link=link, **overrides)


class NdOverlay(Overlayable, UniformNdMapping, CompositeOverlay):
"""