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

Resolving datashade on multiple ndoverlay in a Overlay #5766

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions holoviews/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,6 +988,9 @@ def link_sources(self):

if isinstance(self, GenericOverlayPlot) and not self.batched:
sources = []
elif isinstance(self, GenericOverlayPlot) and isinstance(self.hmap, DynamicMap):
# This is to handle the case of https://github.com/holoviz/holoviews/issues/5595
sources = [v[0] for v in self.stream_sources.values() if v and isinstance(v[0], DynamicMap)]
elif not self.static or isinstance(self.hmap, DynamicMap):
sources = [o for i, inputs in self.stream_sources.items()
for o in inputs if i in zorders]
Expand Down
Loading