-
Notifications
You must be signed in to change notification settings - Fork 346
Closed
Labels
Description
I am trying to position the plot widows. Can we add a general setGeometry method to the BasePlot object?
The QtPlot object has member plotQ.win which is a pyqtgraph.GraphicsWindow. I can call plotQ.win.setGeometry to set the position (this works), but if I look at the object I get the following error:
> plotQ.win
===== Remote process raised exception on request: =====
Traceback (most recent call last):
File "/usr/local/lib/python3.4/dist-packages/pyqtgraph/multiprocess/remoteproxy.py", line 213, in handleRequest
result = getattr(opts['obj'], opts['attr'])
AttributeError: 'GraphicsWindow' object has no attribute '_ipython_display_'
===== Local Traceback to request follows: =====
===== Remote process raised exception on request: =====
Traceback (most recent call last):
File "/usr/local/lib/python3.4/dist-packages/pyqtgraph/multiprocess/remoteproxy.py", line 213, in handleRequest
result = getattr(opts['obj'], opts['attr'])
AttributeError: 'GraphicsWindow' object has no attribute '_repr_png_'
...Reactions are currently unavailable