On Thu, 2008-02-07 at 10:21 -0600, Ryan May wrote:
> Changing the legend call to this fixed it:
> P.legend((b1[0],b2[0]),('lower','upper'))
That fixed it for me too. Thanks. The thread just started by Reckoner
about the same problem also has the answer: "In a nutshell, bar returns
a list of recta
Ryan May wrote:
> chombee wrote:
>> My legend shows both plots as the same colour (blue) when in fact they
>> are different colours. Here's the relevant code:
>>
>> font = FontProperties(size='small');
>> ...
>> b1 = bar(i,lowermeans,width,color='b')
>> b2 = bar(i+width,uppermeans,
chombee wrote:
> My legend shows both plots as the same colour (blue) when in fact they
> are different colours. Here's the relevant code:
>
> font = FontProperties(size='small');
> ...
> b1 = bar(i,lowermeans,width,color='b')
> b2 = bar(i+width,uppermeans,width,color='y')
>