applets/plot_xy: use numpy array for default X axis. Closes #458

pull/605/head
Sebastien Bourdeauducq 2016-05-30 22:48:32 -05:00
parent e6a351c5ea
commit 5b0f963b98
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class XYPlot(pyqtgraph.PlotWidget):
return
x = data.get(self.args.x, (False, None))[1]
if x is None:
x = list(range(len(y)))
x = np.arange(len(y))
error = data.get(self.args.error, (False, None))[1]
fit = data.get(self.args.fit, (False, None))[1]