我可以使用哪种方法为'none'
类型的轴设置颜色(matplotlib.axes._subplots.AxesSubplot
}
根据文件:
subplot_kw :dict Dict与关键字传递给 :meth:
~matplotlib.figure.Figure.add_subplot
调用过去 创建每个子图。
因此变量为fc
(请参阅文档here),这应该可行吗?
f, a = plt.subplots(1, 4, subplot_kw={'fc':'none'})
但是我收到了错误
AttributeError:未知属性fc
我也尝试过为单轴设置颜色
ax.set_axis_bgcolor("none")
但它被忽略了。