Closed
Description
Documentation Link
https://matplotlib.org/devdocs/api/_as_gen/matplotlib.pyplot.figlegend.html
Problem
In the linked doc, the examples all use fig.figlegend
, e.g.
ax.plot([1, 2, 3], label='Inline label')
fig.figlegend()
Figure doesn't have a figlegend
method (but does have legend
).
Suggested improvement
The examples should probably call plt.figlegend
, since it's the docs for matplotlib.pyplot.figlegend
.