Fixed bug that showed wrong scaling (m instead of mm) on x axis

This commit is contained in:
jrheinlaender 2012-12-03 18:49:17 +04:30 committed by wmayer
parent 58a0ad50ec
commit 48f06f64b8

View File

@ -88,4 +88,6 @@ class Diagram:
del self.thePlot.series[0]
self.thePlot.update()
self.xpoints = [p * self.xscale for p in self.xpoints]
self.ypoints = [p * self.yscale for p in self.ypoints]
self.thePlot.plot(self.xpoints, self.ypoints)