2014-07-21 66 views

回答

0

您可以嘗試將軸的顏色設置爲backgroundcolor。 假設白:

for child in ax.get_children(): 
    if isinstance(child, matplotlib.spines.Spine): 
     child.set_color('#FFFFFF') 
相關問題