matplotlib:防止子图标题比子图宽

时间:2019-03-16 14:06:14

标签: matplotlib

我正在使用plt.subplots创建图像网格。

如何确保一个子图的标题不超出其下图的宽度?

换句话说,是否有一种方法可以设置子图标题的最大大小,从而使其不可能与相邻标题重叠?

如果标题将扩展到下图之外,我想减小其字体大小,以免出现这种情况。

1 个答案:

答案 0 :(得分:2)

您可以迭代地更改字体大小,直到标题宽度小于轴宽为止。我认为不要使标题小于1pt是有意义的(即使不再可读),请随意选择其他数字。下面以1pt的fontsize步骤进行迭代;也可以改编。

import matplotlib.pyplot as plt


fig, (ax1, ax2) = plt.subplots(ncols=2)
ax1.plot([1,2])
ax1.set_title("Short title")
ax2.plot([2,1])
ax2.set_title("Loooooong title, which exceeds plot axes width.")


def adjust_title(ax):
    title = ax.title
    ax.figure.canvas.draw()
    def _get_t():
        ax_width = ax.get_window_extent().width
        ti_width = title.get_window_extent().width
        return ax_width/ti_width

    while _get_t() <= 1 and title.get_fontsize() > 1:        
        title.set_fontsize(title.get_fontsize()-1)



adjust_title(ax1)
adjust_title(ax2)

plt.show()

enter image description here