From a721b8b810412755f2beeec04ec75e47ed159a12 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Fri, 6 Oct 2023 13:22:59 +0100 Subject: [PATCH] lisa.tests.staging.utilclamp: Fix debug plot FIX Fix UtilClamp._plot_phases() error location red lines to be vertical and increase the width of the signal plot to be responsive. --- lisa/tests/staging/utilclamp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisa/tests/staging/utilclamp.py b/lisa/tests/staging/utilclamp.py index 2c6d4cf97..1b9d79a14 100644 --- a/lisa/tests/staging/utilclamp.py +++ b/lisa/tests/staging/utilclamp.py @@ -243,7 +243,7 @@ class UtilClamp(RTATestBundle, TestBundle): ana.rta.plot_phases(wlgen_profile=self.rtapp_profile) * hv.Overlay( [ - hv.HLine(failure).options( + hv.VLine(failure).options( alpha=0.5, color='red' ) @@ -254,7 +254,7 @@ class UtilClamp(RTATestBundle, TestBundle): ] if signal is not None: figs.append( - plot_signal(signal) + plot_signal(signal).opts(responsive=True, height=400) ) fig = hv.Layout(figs).cols(1) -- GitLab