2
我使用Python與matlibplot
來繪製條形圖。 本來我想沒有edgecolour的ABR生成,所以當我的情節,我使用:在繪製條形圖後更改條形圖邊緣顏色
h = plt.bar(x, y, width, edgecolor="none")
後來,如果條件滿足,我想改變邊緣顏色例如黑色。
Is there away我可以使用手柄h
?像h.setEdgecolour("black")
?
我使用Python與matlibplot
來繪製條形圖。 本來我想沒有edgecolour的ABR生成,所以當我的情節,我使用:在繪製條形圖後更改條形圖邊緣顏色
h = plt.bar(x, y, width, edgecolor="none")
後來,如果條件滿足,我想改變邊緣顏色例如黑色。
Is there away我可以使用手柄h
?像h.setEdgecolour("black")
?
我終於找到了答案了另一個論壇,面向只是蟒蛇(python-forum.org)
plt.setp(h,edgecolor = "black")