Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedding a PyQtGraph into a Tkinter GUI

I have a Tkinter GUI I've been working on for some time that has a live-plotting feature currently built in matplotlib. However, I'm finding matplotlib to be too slow (it seems to build up a lag over time, as if filling up a buffer of frames of incoming data), so I'm thinking of switching my plotting to PyQtGraph. Can I put this into my Tkinter app?

like image 535
janizer Avatar asked Sep 02 '25 06:09

janizer


1 Answers

No, you cannot embed a PyQtGraph Object inside a tkinter application.

like image 164
Bryan Oakley Avatar answered Sep 04 '25 19:09

Bryan Oakley