mirror of https://github.com/m-labs/artiq.git
plot_xy: fix errorbar plot
This commit is contained in:
parent
ca24e00400
commit
787ed65d00
|
@ -42,7 +42,8 @@ class XYPlot(pyqtgraph.PlotWidget):
|
||||||
# See https://github.com/pyqtgraph/pyqtgraph/issues/211
|
# See https://github.com/pyqtgraph/pyqtgraph/issues/211
|
||||||
if hasattr(error, "__len__") and not isinstance(error, np.ndarray):
|
if hasattr(error, "__len__") and not isinstance(error, np.ndarray):
|
||||||
error = np.array(error)
|
error = np.array(error)
|
||||||
errbars = pg.ErrorBarItem(x=np.array(x), y=np.array(y), height=error)
|
errbars = pyqtgraph.ErrorBarItem(
|
||||||
|
x=np.array(x), y=np.array(y), height=error)
|
||||||
self.addItem(errbars)
|
self.addItem(errbars)
|
||||||
if fit is not None:
|
if fit is not None:
|
||||||
xi = np.argsort(x)
|
xi = np.argsort(x)
|
||||||
|
|
Loading…
Reference in New Issue