From 620c4d4f86830746d07ea6926a68ec1ebb697fc5 Mon Sep 17 00:00:00 2001 From: Marcelina Oset Date: Thu, 5 Jan 2023 15:11:52 +0100 Subject: [PATCH] [#36813] graph.py: Removed (0,100) range from plots with Y axes without percentages --- graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph.py b/graph.py index ed548fc..5196098 100644 --- a/graph.py +++ b/graph.py @@ -423,7 +423,7 @@ def servis_graph(session, fname='plot', output_ext='ascii'): xunits=[None]*5, ytitles=y_titles, yunits=[None]*5, - y_ranges=[(0, 100)]*5, + y_ranges=[(0, 100), (0, 100), (0, 100), None, None], outpath=Path(fname), trimxvalues=False, figsize=(90, 70) @@ -439,7 +439,7 @@ def servis_graph(session, fname='plot', output_ext='ascii'): xunits=[None]*5, ytitles=y_titles, yunits=[None]*5, - y_ranges=[(0, 100)]*5, + y_ranges=[(0, 100), (0, 100), (0, 100), None, None], outpath=Path(fname), outputext=['html'], trimxvalues=False,