2012-07-12 6 views

답변

16

동일한 예를 사용하십시오. 여기 http://matplotlib.org/mpl_toolkits/mplot3d/api.html#axis3d에 설명 된대로 set_pane_color 메서드를 사용하여 창 색상을 설정할 수 있습니다. RGBA 튜플을 사용하여 색상을 설정할 수 있습니다.

# scatter3d_demo.py 
# ... 
# Set the background color of the pane YZ 
ax.w_xaxis.set_pane_color((1.0, 1.0, 1.0, 1.0)) 
plt.show() 
+0

감사합니다. yaxis와 zaxis에 대해 동일한 작업을 수행하는 것은 매우 간단합니다. – user1520280