matplotlib:plot和get_color?

时间:2013-06-21 10:25:44

标签: colors matplotlib

是否可以获得绘图中使用的颜色列表? 考虑这个例子:

line1 = ax1.plot(x1,y1)
line2 = ax1.plot(x2,y2)

我现在如何设置颜色

plt.setp(line1,'color','red')
plt.setp(line2,'color','red')

但是有没有办法学习使用了什么颜色? plt.getp(line1,'color')不起作用并抱怨

AttributeError: 'list' object has no attribute 'get_color'

1 个答案:

答案 0 :(得分:10)

好的,找到答案:plot()调用返回一个行列表。查询颜色的正确方法是

print line1[0].get_color()