将标签添加到线框图中,并且使用facecolor而不是edgecolor

时间:2018-10-23 07:32:06

标签: python matplotlib

以下是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()

enter image description here

我的问题是,图例是黑色,应该是绿色。

我该如何更改?

如果不可能,我该如何伪造?我可以做类似plot(nothing,color='green',legend='abc')的事情吗?

0 个答案:

没有答案