以下是matplotlib documentation for wireframe中经过修改的最小示例。
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# Grab some test data.
X, Y, Z = axes3d.get_test_data(0.05)
# Plot a basic wireframe.
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10,color='black',facecolors='green',label='abc')
ax.legend()
plt.show()
我的问题是,图例是黑色,应该是绿色。
我该如何更改?
如果不可能,我该如何伪造?我可以做类似plot(nothing,color='green',legend='abc')
的事情吗?