作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在matplotlib中绘制以下图像。
我的问题是,图像看起来像这样,但是,我想使背景变暗,因为当我打印该图像时,灰度部分不会出现在打印物中。有人可以告诉我API进行此更改吗?
我使用简单的API绘制3D曲线-
ax.plot(X1, Y1, Z1, '^', c='r')
ax.plot(X2, Y2, Z2, 'o', c='b')
fig = plt.figure(figsize=(10,10))
ax = fig.gca(projection='3d', axisbg='gray')
最佳答案
我通过使用以下代码实现了它-
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))
关于matplotlib - Matplotlib 3D绘图中的较深背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14334274/
我是一名优秀的程序员,十分优秀!