Re: [Matplotlib-users] findobj problem!

2008-09-16 Thread Eric Firing
sa6113 wrote: > I want to use findobj attribute by this code, > > import matplotlib.pyplot as plt > import matplotlib.text as text > . > . > . > fig = plt.figure() > for t in fig.findobj(text.Text): > t.set_family(somefamily) > > but I get this error : > Figure instance has no attribute '

Re: [Matplotlib-users] findobj problem!

2008-09-15 Thread sa6113
I want to use findobj attribute by this code, import matplotlib.pyplot as plt import matplotlib.text as text . . . fig = plt.figure() for t in fig.findobj(text.Text): t.set_family(somefamily) but I get this error : Figure instance has no attribute 'findobj' please help me. sa6113 wrot

[Matplotlib-users] findobj problem!

2008-09-15 Thread sa6113
I want to use findobj attribute by this code, import matplotlib.text as text for t in fig.findobj(text.Text): t.set_family(somefamily) but I get this error : Figure instance has no attribute 'findobj' please help me. -- View this message in context: http://www.nabble.com/findobj-probl