After a big beating of my head against the wall, I was able to come up with this:
ax.grid(False)
ax.w_xaxis._AXINFO['y']['color'] = (0.9, 0.9, 0.9, 0.0)
ax.w_xaxis._AXINFO['x']['color'] = (0.9, 0.9, 0.9, 0.0)
ax.w_xaxis._AXINFO['z']['color'] = (0.9, 0.9, 0.9, 0.0)
Then, I'm sure you will want ticks, tags, etc. disconnected. I can not do it!
You might think that ax.axis("off"), ax.xaxis.visible(False), ax.xaxis.set_alpha(0.0)do something significant.
I am using version 1.0.1 and I suspect there are still a lot of errors in the axis3d object. He has seen a lot of changes lately.

source
share