Can I get the edge settings to apply on all stacked bar as one?
here is an example:
df = pd.DataFrame([[2,5,7,11], [4,8,11,45]]).T
ax = df.plot.bar(stacked=True)
ax.containers[0][2].set_edgecolor('green')
ax.containers[0][2].set_linewidth(5)
ax.containers[1][2].set_edgecolor('green')
ax.containers[1][2].set_linewidth(5)
what I want is the green edge to be around the whole bar without breaking between the stacked rectangles, any ideas?



