├── LICENSE ├── README.md ├── __init__.py ├── backend_kivy.py ├── backend_kivyagg.py └── examples ├── test_backend.py ├── test_events.py └── test_plt.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # garden.matplotlib 2 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/__init__.py -------------------------------------------------------------------------------- /backend_kivy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/backend_kivy.py -------------------------------------------------------------------------------- /backend_kivyagg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/backend_kivyagg.py -------------------------------------------------------------------------------- /examples/test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/examples/test_backend.py -------------------------------------------------------------------------------- /examples/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/examples/test_events.py -------------------------------------------------------------------------------- /examples/test_plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kivy-garden/garden.matplotlib/HEAD/examples/test_plt.py --------------------------------------------------------------------------------