>From my experience, 1) The latest pyqtgraph is mainly compatible with PyQt5. Put this line at the beginning of your file before importing to force PyQt5
import os os.environ['PYQTGRAPH_QT_LIB'] = 'PyQt5' There are a few bugs if you are using OpenGL on retina displays (HiDPI), but otherwise works very well. Combining code referencing Qt4 to code referencing Qt5 though is not possible. 2) Yes. 3) No experience BW Cardioninja On Saturday, 7 January 2017 15:45:38 UTC, אילן הינדי wrote: > > Hi, > I am new in pyqtgraph and before I am starting I would like to new the > answers for the following question? > Is it possible to activate pyqtgraph which is in PyQt4 together with PyQt5 > (for the reset of the application) > Is it possible to include pyqtgraph widgets inside pyqt5 widgets > Is it possible to use the designer to create widgets that include > pyqtgraph widgets inside PyQt5 widgets ? > Thanks, > Ilan > -- You received this message because you are subscribed to the Google Groups "pyqtgraph" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/6b2f2930-84cc-4d2c-a0ea-d05d76e69907%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
