Nota
Haga clic aquí para descargar el código de ejemplo completo
Texto de ajuste automático #
Matplotlib puede ajustar el texto automáticamente, pero si es demasiado largo, el texto se mostrará ligeramente fuera de los límites del eje de todos modos.
Nota: el ajuste automático no funciona junto con
. La configuración 'ajustada' vuelve a escalar el lienzo para acomodar todo el contenido y ocurre antes de envolver. Esto afecta
a los cuadernos de IPython y Jupyter, donde la configuración en línea se usa de forma predeterminada al guardar la imagen para incrustar.savefig(..., bbox_inches='tight')
%matplotlib inline
bbox_inches='tight'
import matplotlib.pyplot as plt
fig = plt.figure()
plt.axis([0, 10, 0, 10])
t = ("This is a really long string that I'd rather have wrapped so that it "
"doesn't go outside of the figure, but if it's long enough it will go "
"off the top or bottom!")
plt.text(4, 1, t, ha='left', rotation=15, wrap=True)
plt.text(6, 5, t, ha='left', rotation=15, wrap=True)
plt.text(5, 5, t, ha='right', rotation=-15, wrap=True)
plt.text(5, 10, t, fontsize=18, style='oblique', ha='center',
va='top', wrap=True)
plt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True)
plt.text(-1, 0, t, ha='left', rotation=-15, wrap=True)
plt.show()