我有一个数字我添加了子图(插入)。我用过:
fig = plt.figure()
ax = fig.add_subplot(111)
subA = fig.add_axes([0.4,0.14,0.2,0.2])
我现在想要更改子图的xtick
字体大小。我试过一些天真的方法,比如
subA.get_xaxis().get_xticks().set_fontsize(10)
没有任何运气。
我怎么能这样做?
答案 0 :(得分:34)
使用:
subA.tick_params(labelsize=6)
答案 1 :(得分:26)
fig = plt.figure()
ax = fig.add_subplot(111)
plt.xticks([0.4,0.14,0.2,0.2], fontsize = 50) # work on current fig
plt.show()
x / yticks与matplotlib.text
具有相同的属性