matplotlibrc配置中的Matplotlib标题位置

时间:2017-10-23 11:48:54

标签: python matplotlib

matplotlibrc配置文件可以选择设置各种title设置:

axes.titlesize      : medium   # fontsize of the axes title
axes.titlepad       : 6.0     # pad between axes and title in points

是否可以选择将标题默认放在左侧,可以手动完成:

import matplotlib.pylab as pl
pl.figure()
pl.title('Title....', loc='left')

例如legend有一个选项:

legend.loc           : best

但我找不到类似标题的位置。

0 个答案:

没有答案