Changeset 74:eb106fe19b30 in orange
- Timestamp:
- 04/21/03 07:28:45 (10 years ago)
- Branch:
- default
- Convert:
- 4d404f0c2434582b7d14ee33b3d49b9e08bf9d01
- File:
-
- 1 edited
-
orange/OrangeWidgets/OWGraph.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
orange/OrangeWidgets/OWGraph.py
r65 r74 126 126 return '' 127 127 return QString(str(self.labels[index])) 128 129 # use this class if you want to hide labels on the axis 130 class HiddenScaleDraw(QwtScaleDraw): 131 def __init__(self, *args): 132 QwtScaleDraw.__init__(self, *args) 133 134 def label(self, value): 135 return QString.null 136 128 137 129 138 class OWGraph(QwtPlot):
Note: See TracChangeset
for help on using the changeset viewer.
