Skip to content

Commit

Permalink
Prevent pipeline network plot from linking with other plots (#7372)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoMathurin authored Oct 8, 2024
1 parent 25ec66d commit 4e146af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion panel/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,9 +523,10 @@ def tap_renderer(plot, element):
yoffset=-.30, default_tools=[], axiswise=True, backend='bokeh'
)
plot = (graph * labels * nodes) if self._linear else (graph * nodes)
xlim = (-0.25, depth + 0.25)
plot.opts(
xaxis=None, yaxis=None, min_width=400, responsive=True,
show_frame=False, height=height, xlim=(-0.25, depth+0.25),
show_frame=False, height=height, xlim=xlim, shared_axes=False,
ylim=(0, 1), default_tools=['hover'], toolbar=None, backend='bokeh'
)
return plot
Expand Down

0 comments on commit 4e146af

Please sign in to comment.