在matplotlib的散点图示例的基础上,如何改变3轴网格平面的灰色背景颜色?我想将其设置为白色,使网格线保持默认的灰色。我发现了这个问题,但我无法将其应用于示例。谢谢。
问问题
28561 次
2 回答
41
使用相同的示例。set_pane_color
您可以使用此处描述的方法设置窗格颜色http://matplotlib.org/mpl_toolkits/mplot3d/api.html#axis3d。您可以使用 RGBA 元组设置颜色:
# scatter3d_demo.py
# ...
# Set the background color of the pane YZ
ax.w_xaxis.set_pane_color((1.0, 1.0, 1.0, 1.0))
plt.show()
于 2012-09-27T14:09:50.223 回答
33
对于稍微不同的方法,请参见下文:
# 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)
请参阅我用作来源的这篇博文。
于 2018-05-20T12:51:50.353 回答