diff --git a/examples/event_handling/close_event.py b/examples/event_handling/close_event.py index 8df5ade2e52d..c7b7fbd56c7d 100644 --- a/examples/event_handling/close_event.py +++ b/examples/event_handling/close_event.py @@ -3,6 +3,7 @@ Close Event =========== +Example to show connecting events that occur when the figure closes. """ from __future__ import print_function import matplotlib.pyplot as plt diff --git a/examples/event_handling/data_browser.py b/examples/event_handling/data_browser.py index 3d05213e6b71..461bf0afb607 100644 --- a/examples/event_handling/data_browser.py +++ b/examples/event_handling/data_browser.py @@ -3,6 +3,11 @@ Data Browser ============ +Connecting data between multiple canvases. + +This example covers how to interact data with multiple canvases. This +let's you select and highlight a point on one axis, and generating the +data of that point on the other axis. """ import numpy as np diff --git a/examples/event_handling/looking_glass.py b/examples/event_handling/looking_glass.py index 62456b02a0a4..aad0cba3a285 100644 --- a/examples/event_handling/looking_glass.py +++ b/examples/event_handling/looking_glass.py @@ -3,6 +3,7 @@ Looking Glass ============= +Example using mouse events to simulate a looking glass for inspecting data. """ import numpy as np import matplotlib.pyplot as plt diff --git a/examples/event_handling/path_editor.py b/examples/event_handling/path_editor.py index a8a24e535fc8..727712609d34 100644 --- a/examples/event_handling/path_editor.py +++ b/examples/event_handling/path_editor.py @@ -3,6 +3,10 @@ Path Editor =========== +Sharing events across GUIs. + +This example demonstrates a cross-GUI application using Matplotlib event +handling to interact with and modify objects on the canvas. """ import numpy as np import matplotlib.path as mpath