Commit 4256cc80 authored by Martin Drechsler's avatar Martin Drechsler

plot a measurement when finished, in extra window

parent bdeed9c4
...@@ -289,6 +289,11 @@ class CameraGuiMainWindow(QMainWindow): ...@@ -289,6 +289,11 @@ class CameraGuiMainWindow(QMainWindow):
print('gui meas end') print('gui meas end')
plot = pg.plot(self.scanROIdataX, self.scanROIdataY)
plot.setLabel('bottom', 'X Axis', self.measurementFrame.selectScanSignal.currentText())
plot.setLabel('left', 'Y Axis', 'Counts')
def __del__(self): def __del__(self):
print("chau gui") print("chau gui")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment