8000 Backport PR #10731 on branch v2.2.x by lumberbot-app[bot] · Pull Request #10744 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Backport PR #10731 on branch v2.2.x #10744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tutorials/text/annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,11 @@
You may take a look at this example
:ref:`sphx_glr_gallery_text_labels_and_annotations_annotation_demo.py`.

Using ConnectorPatch
--------------------
Using ConnectionPatch
---------------------

The ConnectorPatch is like an annotation without text. While the annotate
function is recommended in most situations, the ConnectorPatch is useful when
The ConnectionPatch is like an annotation without text. While the annotate
function is recommended in most situations, the ConnectionPatch is useful when
you want to connect points in different axes. ::

from matplotlib.patches import ConnectionPatch
Expand All @@ -540,7 +540,7 @@
Connect Simple01


While the ConnectorPatch instance can be added to any axes, you may want to add
While the ConnectionPatch instance can be added to any axes, you may want to add
it to the axes that is latest in drawing order to prevent overlap by other
axes.

Expand Down
0