Axis line can optionally stop at the last tick

This commit is contained in:
Luke Campagnola 2013-03-28 12:34:17 -04:00
parent 829503f3d2
commit ee89b291dc

View File

@ -383,6 +383,7 @@ class AxisItem(GraphicsWidget):
picture = QtGui.QPicture() picture = QtGui.QPicture()
painter = QtGui.QPainter(picture) painter = QtGui.QPainter(picture)
specs = self.generateDrawSpecs(painter) specs = self.generateDrawSpecs(painter)
if specs is not None:
self.drawPicture(painter, *specs) self.drawPicture(painter, *specs)
finally: finally:
painter.end() painter.end()
@ -646,6 +647,10 @@ class AxisItem(GraphicsWidget):
## determine mapping between tick values and local coordinates ## determine mapping between tick values and local coordinates
dif = self.range[1] - self.range[0] dif = self.range[1] - self.range[0]
if dif == 0:
xscale = 1
offset = 0
else:
if axis == 0: if axis == 0:
xScale = -bounds.height() / dif xScale = -bounds.height() / dif
offset = self.range[0] * xScale - bounds.height() offset = self.range[0] * xScale - bounds.height()