Browse Source

[#36813] graph.py: Removed (0,100) range from plots with Y axes without percentages

check-vt100
Marcelina Oset 3 years ago
parent
commit
620c4d4f86
  1. 4
      graph.py

4
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,

Loading…
Cancel
Save