Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Closed
Labels
Milestone
Description
Documentation Link
https://matplotlib.org/devdocs/api/_as_gen/matplotlib.pyplot.figlegend.html
Problem
In the linked doc, the examples all usefig.figlegend
, e.g.
ax.plot([1, 2, 3], label='Inline label')fig.figlegend()
Figure doesn't have afiglegend
method (but does havelegend
).
Suggested improvement
The examples should probably callplt.figlegend
, since it's the docs formatplotlib.pyplot.figlegend
.