Align the titles of subplots in the same subplot row if title alignment is being done automatically (i.e. the title position is not manually set).
Alignment persists for draw events after this is called.
See also
This assumes that axs are from the same GridSpec, so that their SubplotSpec positions correspond to figure positions.
Example with titles:
fig, axs = plt.subplots(1, 2)
axs[0].set_aspect('equal')
axs[0].set_title('Title 0')
axs[1].set_title('Title 1')
fig.align_titles()
matplotlib.figure.Figure.align_titles
© 2012–2023 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/stable/api/_as_gen/matplotlib.figure.Figure.align_titles.html