标题垂直移动y
,但如果 figheight 更改,则标题与 xaxis 的距离/填充不是恒定的:
fig, axs = plt.subplots(1,1, figsize=(15,2.5*1.5)) axs.set_title("mytitle", fontsize=14, y=-0.2, ha='center')
所以在增加 figheight 时它会移开:
我也试过: axs.set_title("mytitle", fontsize=14, va='bottom', ha='center')
没有重新定位(保持在顶部)和 fontdict-form,没有变化:
axs.set_title('my_title', fontdict={'fontsize': 20, 'verticalalignment': 'bottom', 'horizontalalignment': 'center'})
编辑
标题只是我现在使用的文本,它的模块化:
axs.text(0.5,1,'some_title', va='bottom', ha='center', transform=axs.transAxes, color='k', fontsize=15, bbox={'facecolor':'white', 'edgecolor':'white', 'alpha':1, 'pad':10})
更多在文本 cmds。
忽然笑
相关分类