diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-02-26 00:19:02 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-02-26 00:19:02 -0500 |
commit | 0d71a17ed89cc1cfa3b2b2b5b2844687c45c2102 (patch) | |
tree | 5e970dd898e5e0d9d6e1da17112bb7277b5c2a1d /util/stats | |
parent | cf3667a0e435fe707cf318caecc151c4b311b755 (diff) | |
download | gem5-0d71a17ed89cc1cfa3b2b2b5b2844687c45c2102.tar.xz |
forgot to add a chart option
util/stats/chart.py:
add a bool config option for determining
if the legend is inside or outside the figure
--HG--
extra : convert_revision : e862d1832a0cc3c1837758cc247bc77c0a02ec12
Diffstat (limited to 'util/stats')
-rw-r--r-- | util/stats/chart.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/stats/chart.py b/util/stats/chart.py index 095620172..369a57fc6 100644 --- a/util/stats/chart.py +++ b/util/stats/chart.py @@ -31,6 +31,7 @@ class ChartOptions(object): defaults = { 'chart_size' : (8, 4), 'figure_size' : [0.1, 0.1, 0.6, 0.85], 'title' : None, + 'fig_legend' : True, 'legend' : None, 'legend_loc' : 'upper right', 'legend_size' : 6, |