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

Add Plotly Dash support #4605

Merged
merged 11 commits into from
Nov 7, 2020
4 changes: 2 additions & 2 deletions holoviews/core/decollate.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .. import (
Layout, DynamicMap, Element, Callable, Overlay, GridSpace, NdOverlay, HoloMap
)
from . import ViewableTree
from . import ViewableTree, AdjointLayout
from collections import namedtuple
from ..streams import Stream, Derived

Expand Down Expand Up @@ -148,7 +148,7 @@ def to_expr_extract_streams(
stream_mapping.setdefault(container_key, []).append(cloned_stream)
return stream_index

elif isinstance(hvobj, (Layout, GridSpace, NdOverlay, HoloMap, Overlay)):
elif isinstance(hvobj, (Layout, GridSpace, NdOverlay, HoloMap, Overlay, AdjointLayout)):
fn = hvobj.clone(data={}).clone
args = []
data_expr = []
Expand Down
1 change: 1 addition & 0 deletions holoviews/plotting/plotly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
Overlay: OverlayPlot,
NdOverlay: OverlayPlot,
Layout: LayoutPlot,
AdjointLayout: AdjointLayoutPlot,
NdLayout: LayoutPlot,
GridSpace: GridPlot,
GridMatrix: GridPlot}, backend='plotly')
Expand Down
Loading