8000 Backport PR #21592 on branch v3.5.x ([BUG in 3.5.0rc1] - Anatomy of a Figure has the legend in the wrong spot) by meeseeksmachine · Pull Request #21599 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content
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
2 changes: 1 addition & 1 deletion examples/showcase/anatomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def minor_tick(x, pos):
ax.set_xlabel("X axis label")
ax.set_ylabel("Y axis label")

ax.legend()
ax.legend(loc="upper right")


def circle(x, y, radius=0.15):
Expand Down
0