- Timestamp:
- 02/21/05 17:41:18 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asaplot.py
r482 r491 14 14 FigureManagerTkAgg 15 15 from matplotlib.figure import Figure, Text 16 from matplotlib.font_manager import FontProperties 16 17 from matplotlib.numerix import sqrt 17 18 from matplotlib import rc, rcParams … … 636 637 if i <= (rows-1)*cols - 1: 637 638 # Suppress x-labels for frames not in the bottom row. 638 self.subplots[i]['axes'].set_xticklabels([]) 639 for tick in self.subplots[i]['axes'].xaxis.majorTicks: 640 tick.label1On = False 639 641 640 642 if i%cols: 641 643 # Suppress y-labels for frames not in the left column. 642 self.subplots[i]['axes'].set_yticklabels([]) 644 for tick in self.subplots[i]['axes'].yaxis.majorTicks: 645 tick.label1On = False 643 646 644 647 self.rows = rows
Note:
See TracChangeset
for help on using the changeset viewer.