You are reading an old version of the documentation (v2.1.1). For the latest version see https://matplotlib.org/stable/gallery/userdemo/anchored_box01.html
matplotlib
Fork me on GitHub


Travis-CI:

Related Topics

This Page

Anchored Box01ΒΆ

../../_images/sphx_glr_anchored_box01_001.png
import matplotlib.pyplot as plt
from matplotlib.offsetbox import AnchoredText


fig, ax = plt.subplots(figsize=(3, 3))

at = AnchoredText("Figure 1a",
                  prop=dict(size=15), frameon=True, loc=2)
at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2")
ax.add_artist(at)

plt.show()

Total running time of the script: ( 0 minutes 0.016 seconds)

Gallery generated by Sphinx-Gallery