Skip to content
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

Document mpl_toolkits.axes_grid1.anchored_artists #4874

Merged
merged 9 commits into from Dec 26, 2015
7 changes: 7 additions & 0 deletions doc/mpl_toolkits/axes_grid/api/anchored_artists_api.rst
@@ -0,0 +1,7 @@
:mod:`mpl_toolkits.axes_grid1.anchored_artists`
===============================================

.. automodule:: mpl_toolkits.axes_grid1.anchored_artists
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions doc/mpl_toolkits/axes_grid/api/index.rst
Expand Up @@ -24,4 +24,5 @@

.. toctree::

anchored_artists_api.rst
inset_locator_api.rst
2 changes: 1 addition & 1 deletion examples/axes_grid/simple_anchored_artists.py
Expand Up @@ -2,7 +2,7 @@


def draw_text(ax):
from mpl_toolkits.axes_grid1.anchored_artists import AnchoredText
from matplotlib.offsetbox import AnchoredText
at = AnchoredText("Figure 1a",
loc=2, prop=dict(size=8), frameon=True,
)
Expand Down