Hello,
I want to design a GUI with QT designer that includes 3 plots:
1) Realtime plotting from COM port using PyQtGraph.
2) A 'screenshot' plot of the 1st one, but used in Matplotlib.
3) Another matplotlib plot that performs additional analysis on the graph presented in point 2.
Is it possible to combine these 3 plots in a GUI? Has anyone else tried it before? I'd use PyQtGraph for everything, but there's some interactive features of Matplotlib I need that I'm not sure PyQtGraph can do at the moment (handling events, point selection, adding markers, erasing those updates, start over).
Thanks for your time!