[pyqtgraph] RemoteGraphicsView, adding items, and signals/slots

2017-12-08 Thread Geoffrey Barrett
Hello, I am trying to do something similar to the *crosshair.py* example but with *RemoteGraphicsView.* Hypothetically if I have something similar to this: from PyQt4 import QtGui, QtCore import numpy as np import pyqtgraph as pg import pyqtgraph.widgets.RemoteGraphicsView import sys class ma

[pyqtgraph] Re: RemoteGraphicsView, adding items, and signals/slots

2017-12-08 Thread Geoffrey Barrett
Also should be the following (I mistakenly put view2 instead of view1: def update_view1(self): # This doesn't appear to be called at all minX, maxX, = self.lr.getRegion() self.view1.vb.setXRange(minX, maxX) On Friday, December 8, 2017 at 11:10:53 AM UTC-5, Geo

[pyqtgraph] Re: RemoteGraphicsView, adding items, and signals/slots

2017-12-08 Thread Geoffrey Barrett
Also should be the following (I mistakenly put view2 instead of view1: def update_view1(self): # This doesn't appear to be called at all minX, maxX, = self.lr.getRegion() self.plot1.vb.setXRange(minX, maxX) On Friday, December 8, 2017 at 11:10:53 AM UTC-5, Geoffrey Ba

[pyqtgraph] Re: RemoteGraphicsView, adding items, and signals/slots

2018-03-02 Thread Geoffrey Barrett
Still working on this issue if anyone has tried to remotely plot the crosshair example. On Friday, December 8, 2017 at 11:10:53 AM UTC-5, Geoffrey Barrett wrote: > > Hello, > > I am trying to do something similar to the *crosshair.py* example but > with *RemoteGraphicsView.* >