I want to put a graph that self updates. So when I press a Kivy button on my GUI script written with Python and it's supposed to take me to a Screen
. The Screen
has a graph on a part of the Screen
and buttons on the rest of the screen. However, I add the graph and it opens in a separate window. How do I do that?
I used the matplotlib
library for plotting the graph.
I used plt.show()
and it opens a different window.