python使用Axes3D画三维图加入legend图例时报错AttributeError: ‘Poly3DCollection‘ object has no attribute ‘_edgecolo

2023-11-15

Q:python使用Axes3D画三维图加入legend图例时报错AttributeError: 'Poly3DCollection' object has no attribute '_edgecolors2d'

报错源代码

fig = plt.figure()
ax = Axes3D(fig)
X, Y = np.meshgrid(3, 3)
ax.plot_surface(X, Y, np.zeros([3,3], label="surf")
ax.legend()
plt.show()
A:在ax.legend()加入如下代码
surf._facecolors2d=surf._facecolors3d
surf._edgecolors2d=surf._edgecolors3d

修改后代码

fig = plt.figure()
ax = Axes3D(fig)
X, Y = np.meshgrid(3, 3)
surf = ax.plot_surface(X, Y, np.zeros([3,3], label="surf")
surf._facecolors2d=surf._facecolors3d
surf._edgecolors2d=surf._edgecolors3d
ax.legend()
plt.show()
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

python使用Axes3D画三维图加入legend图例时报错AttributeError: ‘Poly3DCollection‘ object has no attribute ‘_edgecolo 的相关文章

随机推荐