本文简要介绍 python 语言中 matplotlib.figure.FigureBase.align_xlabels
的用法。
-
如果标签对齐是自动完成的(即标签位置不是手动设置的),则在同一子图列中对齐子图的 xlabels。
调用此方法后,绘图事件的对齐仍然存在。
如果标签位于底部,则它与轴上的标签对齐,这些轴的标签也位于底部,并且具有相同的最底部子图行。如果标签在顶部,则它与具有相同最顶行的轴上的标签对齐。
注意
这假设
axs
来自相同的GridSpec
,因此它们的SubplotSpec
位置对应于图形位置。例子
带有旋转 xtick 标签的示例:
fig, axs = plt.subplots(1, 2) for tick in axs[0].get_xticklabels(): tick.set_rotation(55) axs[0].set_xlabel('XLabel 0') axs[1].set_xlabel('XLabel 1') fig.align_xlabels()
用法
align_xlabels(axs=None)
相关用法
- Python matplotlib FigureBase.align_ylabels用法及代码示例
- Python matplotlib FigureBase.add_axes用法及代码示例
- Python matplotlib FigureBase.add_subplot用法及代码示例
- Python matplotlib FigureBase.add_gridspec用法及代码示例
- Python matplotlib FigureBase.subplots用法及代码示例
- Python matplotlib FigureBase.legend用法及代码示例
- Python matplotlib FigureBase.sticky_edges用法及代码示例
- Python matplotlib FigureBase.colorbar用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib Figure.add_axes用法及代码示例
- Python matplotlib FigureMpl用法及代码示例
- Python matplotlib FigureCanvasBase.mpl_connect用法及代码示例
- Python matplotlib Figure.figimage用法及代码示例
- Python matplotlib Figure.add_subplot用法及代码示例
- Python matplotlib Figure.legend用法及代码示例
- Python matplotlib FigureCanvasBase.mpl_disconnect用法及代码示例
- Python matplotlib Figure.savefig用法及代码示例
- Python matplotlib Figure.colorbar用法及代码示例
- Python matplotlib Figure.add_gridspec用法及代码示例
- Python matplotlib Figure.sticky_edges用法及代码示例
- Python matplotlib FigureCanvasBase.new_timer用法及代码示例
- Python matplotlib Figure.subplots用法及代码示例
- Python matplotlib Figure.align_ylabels用法及代码示例
- Python matplotlib Figure.align_xlabels用法及代码示例
- Python matplotlib FontManager用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.figure.FigureBase.align_xlabels。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。