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 '
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
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