diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-05-02 11:45:42 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-05-02 11:45:42 -0400 |
commit | d50b6e524718a691b5b34b5bca83654ef8f0a66d (patch) | |
tree | 46a00e0f49b206fb6af8e91b96bfee82bcc4b2b3 /util | |
parent | 8e9d44477c6d9b48a10ee26e469962fe539ad4ba (diff) | |
download | gem5-d50b6e524718a691b5b34b5bca83654ef8f0a66d.tar.xz |
Fix some of lisa's barchart changes
util/stats/barchart.py:
- there is no self.inner_axes
- don't append an empty value to self.xsubticks, otherwise
subsequent calls will get extra empty ticks
- rotate labels 30 degrees instead of 90 so it looks better
--HG--
extra : convert_revision : 1cbac6d1f92bfc6b2c1e886ad5f9d4c78a2b3820
Diffstat (limited to 'util')
-rw-r--r-- | util/stats/barchart.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/stats/barchart.py b/util/stats/barchart.py index 5d6dd0ab1..a477d1f3b 100644 --- a/util/stats/barchart.py +++ b/util/stats/barchart.py @@ -233,7 +233,7 @@ class BarChart(ChartOptions): inner_axes.set_yticks(ticks) inner_axes.set_yticklabels(self.yticks) elif self.ylim is not None: - self.inner_axes.set_ylim(self.ylim) + inner_axes.set_ylim(self.ylim) if self.xticks is not None: outer_axes.set_xticks(arange(cshape[2]) + .5) @@ -242,9 +242,9 @@ class BarChart(ChartOptions): if self.xsubticks is not None: numticks = (cshape[0] + 1) * cshape[2] inner_axes.set_xticks(arange(numticks) * width + 2 * center) - self.xsubticks.append('') - inner_axes.set_xticklabels(self.xsubticks * cshape[2], fontsize=7, - rotation=90) + xsubticks = list(self.xsubticks) + [ '' ] + inner_axes.set_xticklabels(xsubticks * cshape[2], fontsize=7, + rotation=30) if self.legend is not None: if dim == 1: |