我有一个条形图,包含3个堆叠系列和5个条形图。我想通过改变线条的宽度来突出显示一个单独的条形图(所有3个堆叠元素)。
我正在使用以下命令绘制条形图:
mybar = ax.bar(x,Y[:,i],bottom=x,color=colors[i],edgecolor='none',width=wi,linewidth = 0)
bar_handles = np.append(bar_handles,mybar)
我已经处理了我想要更改存储在数组bar_handles
中的栏,有没有办法在绘制后更改栏的edgecolor
和linewidth
属性?
答案 0 :(得分:10)
ax.bar
会返回Container
位艺术家;每个“艺术家”都是Rectangle
set_linewidth
和set_edgecolor
方法。
要更改mybar
中第二个栏的设置,您可以这样做:
mybar[1].set_linewidth(4)
mybar[1].set_edgecolor('r')
这是一个脚本,显示了如何使用它来改变堆栈的线宽:
import numpy as np
import matplotlib.pyplot as plt
x = np.array([1,2,3])
y1 = np.array([3,2.5,1])
y2 = np.array([4,3,2])
y3 = np.array([1,4,1])
width = 0.5
handles = []
b1 = plt.bar(x, y1, color='#2040D0', width=width, linewidth=0)
handles.append(b1)
b2 = plt.bar(x, y2, bottom=y1, color='#60A0D0', width=width, linewidth=0)
handles.append(b2)
b3 = plt.bar(x, y3, bottom=y1+y2, color='#A0D0D0', width=width, linewidth=0)
handles.append(b3)
# Highlight the middle stack.
for b in handles:
b[1].set_linewidth(3)
plt.xlim(x[0]-0.5*width, x[-1]+1.5*width)
plt.xticks(x+0.5*width, ['A', 'B', 'C'])
plt.show()
此脚本创建以下条形图:
答案 1 :(得分:3)
我最终这样做了:
ax.axvspan(X1,
X1+wi,
ymax=Y2,
facecolor='none',
edgecolor='black',
linewidth=2)
......其中
X1 = bar_handles[startBlock].get_x()
wi = bar_handles[startBlock].get_width()
Y2 = ax.transLimits.transform((0,bar_handles[startBlock].get_height()))[1]
这会在我的条形图上产生一条边 - 包括其中的所有元素 - 没有元素之间的水平相似。