8000 Clean up legend docstrings by dstansby · Pull Request #9946 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Clean up legend docstrings #9946

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 2 commits into from
Dec 12, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
Fixed links
  • Loading branch information
jklymak authored Dec 12, 2017
commit 473f44927edb20c6c1f03a83da47a21eba9238f1
4 changes: 2 additions & 2 deletions lib/matplotlib/legend.py
7F49
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ def set_bbox_to_anchor(self, bbox, transform=None):

*bbox* can be

- A `BboxBase` instance
- A `~.BboxBase` instance
- A tuple of ``(left, bottom, width, height)`` in the given transform
(normalized axes coordinate if None)
- A tuple of ``[left, bottom]`` where the width and height will be
Expand Down Expand Up @@ -1272,7 +1272,7 @@ def draggable(self, state=None, use_blit=False, update="loc"):
* False : turn draggable off

If draggable is on, you can drag the legend on the canvas with
the mouse. The `DraggableLegend` helper instance is returned if
the mouse. The `~.DraggableLegend` helper instance is returned if
draggable is on.

The update parameter control which parameter of the legend changes
Expand Down
0