Re: [Matplotlib-users] legend: changing the text colour

2010-09-06 Thread karianne
Thank you, JJ, this solves my problems. I have one question to your reply: Jae-Joon Lee wrote: > > col, leg = "b", "test" > errorbar([1,2,3], [1,2,1],xerr=[0.1, 0.1, 0.1], yerr=[0.1, 0.1, 0.1], > fmt='.',color=col) > l2, = plot([],[], "+", color=col) > l2.remove() # remove from the axe

Re: [Matplotlib-users] legend: changing the text colour

2010-09-06 Thread karianne
Thank you, JJ, this solves my problems. I have one question to your reply: Jae-Joon Lee wrote: > > col, leg = "b", "test" > errorbar([1,2,3], [1,2,1],xerr=[0.1, 0.1, 0.1], yerr=[0.1, 0.1, 0.1], > fmt='.',color=col) > l2, = plot([],[], "+", color=col) > l2.remove() # remove from the axe

Re: [Matplotlib-users] legend: changing the text colour

2010-09-03 Thread Jae-Joon Lee
On Fri, Sep 3, 2010 at 11:04 PM, karianne wrote: > Hi, > > I am plotting several different symbols using 3 different colours. The > colours indicate different data sets, whereas the symbols need not be > explained. I would therefore like each label to have a different colour, > i.e. each line in m

[Matplotlib-users] legend: changing the text colour

2010-09-03 Thread karianne
Hi, I am plotting several different symbols using 3 different colours. The colours indicate different data sets, whereas the symbols need not be explained. I would therefore like each label to have a different colour, i.e. each line in my legend should be written in a different colour specified.