From 4e146af86c1c6d81147e499a5705841a0512c3ed Mon Sep 17 00:00:00 2001 From: Theom <49269671+TheoMathurin@users.noreply.github.com> Date: Tue, 8 Oct 2024 10:12:21 +0200 Subject: [PATCH] Prevent pipeline network plot from linking with other plots (#7372) --- panel/pipeline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/panel/pipeline.py b/panel/pipeline.py index 84eacc7eab..aa475b983a 100644 --- a/panel/pipeline.py +++ b/panel/pipeline.py @@ -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