How to turn off transparency in Matplotlib's 3D Scatter plot?
You need to add depthshade=False
as an argument in the scatter function.
ax.scatter(xval, yval, zval, c=cval, cmap=plt.cm.gray, depthshade=False)
Matplotlib 3D tutorial
You need to add depthshade=False
as an argument in the scatter function.
ax.scatter(xval, yval, zval, c=cval, cmap=plt.cm.gray, depthshade=False)
Matplotlib 3D tutorial