Fixed bug that showed wrong scaling (m instead of mm) on x axis
This commit is contained in:
parent
58a0ad50ec
commit
48f06f64b8
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user