我正在matplotlib中绘制以下图像.我的问题是,图像看起来很像这样,但是,我想让背景更暗,因为当我打印这个图像时,灰度部分不会出现在打印中.有人能告诉我API进行此更改吗?
我使用简单的API绘制3D曲线 -
ax.plot(X1, Y1, Z1, '^', c='r')
ax.plot(X2, Y2, Z2, 'o', c='b')
Run Code Online (Sandbox Code Playgroud)

我也尝试过这个 -
fig = plt.figure(figsize=(10,10))
ax = fig.gca(projection='3d', axisbg='gray')
Run Code Online (Sandbox Code Playgroud)
这会将颜色更改为深灰色,但它也会改变图像外部的颜色 -

Raj*_*Raj 14
我通过使用以下代码实现了它 -
ax = fig.add_subplot(111, projection='3d')
plt.gca().patch.set_facecolor('white')
ax.w_xaxis.set_pane_color((0.8, 0.8, 0.8, 1.0))
ax.w_yaxis.set_pane_color((0.8, 0.8, 0.8, 1.0))
ax.w_zaxis.set_pane_color((0.8, 0.8, 0.8, 1.0))
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4144 次 |
| 最近记录: |