1 2 3 4 5 6 7 8 9 10 11 12 13
|
.. _user_interfaces:
Embedding Matplotlib in graphical user interfaces
=================================================
You can embed Matplotlib directly into a user interface application by
following the embedding_in_SOMEGUI.py examples here. Currently
Matplotlib supports PyQt/PySide, PyGObject, Tkinter, and wxPython.
When embedding Matplotlib in a GUI, you must use the Matplotlib API
directly rather than the pylab/pyplot procedural interface, so take a
look at the examples/api directory for some example code working with
the API.
|