Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1e6dc92

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

File tree

Expand file treeCollapse file tree

4 files changed

+11
-0
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+11
-0
lines changed

‎examples/event_handling/close_event.py

Copy file name to clipboardExpand all lines: examples/event_handling/close_event.py
+1Lines 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

Copy file name to clipboardExpand all lines: examples/event_handling/data_browser.py
+5Lines 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

Copy file name to clipboardExpand all lines: examples/event_handling/looking_glass.py
+1Lines 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

Copy file name to clipboardExpand all lines: examples/event_handling/path_editor.py
+4Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.