Skip to content

Commit

Permalink
lisa.stats: Fix plot_stats() X scale
Browse files Browse the repository at this point in the history
FIX

Fix the X scale in plot_stats() on bokeh backend where the scale was
shared by all plots.
  • Loading branch information
douglas-raillard-arm committed Oct 29, 2021
1 parent 4ce0d9e commit 348a736
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lisa/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -951,9 +951,6 @@ def plot_subdf(group, subdf):
],
kdims=kdims,
).cols(ncols).options(
title=title,
shared_axes=False,
).options(
backend='bokeh',
toolbar='left',
).options(
Expand All @@ -967,6 +964,9 @@ def plot_subdf(group, subdf):
'Overlay',
backend='bokeh',
hooks=[lisa.notebook._hv_multi_line_title_hook],
).options(
title=title,
shared_axes=False,
)

if filename:
Expand Down

0 comments on commit 348a736

Please sign in to comment.