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?
> "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
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