Skip to content

Commit

Permalink
Merge pull request matplotlib#9333 from divyam3897/descriptionExamples
Browse files Browse the repository at this point in the history
DOC: Add descriptions for remaining event handling examples
  • Loading branch information
tacaswell authored Oct 10, 2017
2 parents c166fa1 + e331717 commit 28ae8eb
Showing 4 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/event_handling/close_event.py
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions examples/event_handling/data_browser.py
Original file line number Diff line number Diff line change
@@ -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

1 change: 1 addition & 0 deletions examples/event_handling/looking_glass.py
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions examples/event_handling/path_editor.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 28ae8eb

Please sign in to comment.