8000 Merge pull request #9333 from divyam3897/descriptionExamples · matplotlib/matplotlib@1e6dc92 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1e6dc92

Browse files
committed
Merge pull request #9333 from divyam3897/descriptionExamples
DOC: Add descriptions for remaining event handling examples
1 parent 2f7bcd7 commit 1e6dc92

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

examples/event_handling/close_event.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Close Event
44
===========
55
6+
Example to show connecting events that occur when the figure closes.
67
"""
78
from __future__ import print_function
89
import matplotlib.pyplot as plt

examples/event_handling/data_browser.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Data Browser
44
============
55
6+
Connecting data between multiple canvases.
7+
8+
This example covers how to interact data with multiple canvases. This
9+
let's you select and highlight a point on one axis, and generating the
10+
data of that point on the other axis.
611
"""
712
import numpy as np
813

examples/event_handling/looking_glass.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Looking Glass
44
=============
55
6+
Example using mouse events to simulate a looking glass for inspecting data.
67
"""
78
import numpy as np
89
import matplotlib.pyplot as plt

examples/event_handling/path_editor.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Path Editor
44
===========
55
6+
Sharing events across GUIs.
7+
8+
This example demonstrates a cross-GUI application using Matplotlib event
9+
handling to interact with and modify objects on the canvas.
610
"""
711
import numpy as np
812
import matplotlib.path as mpath

0 commit comments

Comments
 (0)
0