Turn off z-axis only in 3-d plot

依然范特西╮ 提交于 2019-12-04 02:08:41

Most of the features are accessible via w_zaxis:

In this case you can use:

ax.w_zaxis.line.set_lw(0.)
ax.set_zticks([])
Icoding

Though this question was posted a long time ago, I did not find a good solution for this. I tried it myself then found this code below might work:

ax.set_zticks([])
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!