matplotlib.axes.Axes.set_ylabel 中的“fontsize”参数不起作用?

时间:2021-07-08 14:14:33

标签: python matplotlib axis-labels

我正在构建一个图,在该图上我隐藏了顶部和右侧的轴: (遵循 https://matplotlib.org/stable/gallery/axisartist/simple_axisline3.html#sphx-glr-gallery-axisartist-simple-axisline3-py 中的官方示例)

import matplotlib.pyplot as plt
from mpl_toolkits.axisartist.axislines import Axes
import numpy as np


fig = plt.figure()
ax = fig.add_subplot(axes_class=Axes)

ax.axis["right", "top"].set_visible(False)

x_range = np.linspace(10, 20)
ax.plot(x_range, x_range+10)

接下来,我尝试为我的 x 和 y 轴标签设置自定义字体大小。 通常它只是简单地完成:

ax.set_xlabel("A (unit A)", fontsize=50)
ax.set_ylabel("B (unit B)", fontsize=50)

然而,在字体大小上看不到任何影响。请参阅 figure output。没有返回错误。

我猜我从 mpl_toolkits 调用的 Axes 子类有不同的方法,但我不知道该怎么做?

预先感谢您的帮助。

0 个答案:

没有答案