# Get rid of colored axes planes
# First remove fill
ax.xaxis.pane.fill = False
ax.yaxis.pane.fill = False
ax.zaxis.pane.fill = False
# Now set color to white (or whatever is "invisible")
ax.xaxis.pane.set_edgecolor('w')
ax.yaxis.pane.set_edgecolor('w')
ax.zaxis.pane.set_edgecolor('w')
# Bonus: To get rid of the grid as well:
ax.grid(False)
2条答案
按热度按时间k3fezbri1#
用同样的例子。您可以使用
set_pane_color
方法设置窗格颜色,如下所述www.example www.example.com 。您可以使用RGBA元组设置颜色:ej83mcc02#
要了解稍有不同的方法,请参见下文:
看看这个blog post作为源代码。