Re: [Matplotlib-users] fill without label

2006-06-19 Thread aonghus
thanks for the suggestion- that works as expected: fill(fx, fy, label = '_nolegend_')aJohn Hunter <[EMAIL PROTECTED]> wrote: > "aonghus" == aonghus <[EMAIL PROTECTED]> writes:aonghus> Hi, Does anyone know how to use the fill command withoutaonghus> a label appearing in the legend box?

Re: [Matplotlib-users] fill without label

2006-06-19 Thread John Hunter
> "aonghus" == aonghus <[EMAIL PROTECTED]> writes: aonghus> Hi, Does anyone know how to use the fill command without aonghus> a label appearing in the legend box? aonghus> Any suggestions? >From the legend docstring if label is set to '_nolegend_', the item will not be shown

[Matplotlib-users] fill without label

2006-06-19 Thread aonghus
Hi,Does anyone know how to use the fill command without a label appearing in the legend box?I have something like this: plot(x, y, label = 'label1') fill(fx, fy) legend(loc = 'best')I thought this might work: fill(fx, fy, label = None)but I get this error instead: raise TypeError('text must be a st