Skip to content

Commit

Permalink
lisa.tests.staging.utilclamp: Fix debug plot
Browse files Browse the repository at this point in the history
FIX

Fix UtilClamp._plot_phases() error location red lines to be vertical and
increase the width of the signal plot to be responsive.
  • Loading branch information
douglas-raillard-arm committed Oct 6, 2023
1 parent 0c97f97 commit b389edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lisa/tests/staging/utilclamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def _plot_phases(self, test, failures, signal=None):
ana.rta.plot_phases(wlgen_profile=self.rtapp_profile) *
hv.Overlay(
[
hv.HLine(failure).options(
hv.VLine(failure).options(
alpha=0.5,
color='red'
)
Expand All @@ -254,7 +254,7 @@ def _plot_phases(self, test, failures, signal=None):
]
if signal is not None:
figs.append(
plot_signal(signal)
plot_signal(signal).opts(responsive=True, height=400)
)
fig = hv.Layout(figs).cols(1)

Expand Down

0 comments on commit b389edd

Please sign in to comment.