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

Re: [Matplotlib-users] How to give a name to a figure?

2008-09-15 Thread Jae-Joon Lee
> > Kind of awkward, but > > fig.canvas.manager.window.wm_title() > I guess this is backend dependent. In my Gtk backend, I don't have such a method. But I found fig.canvas.manager.window.get_title(). Thanks! -JJ - This SF.

Re: [Matplotlib-users] How to give a name to a figure?

2008-09-15 Thread Michael McNeil Forbes
On Sep 15, 2008, at 4:53 PM, Jae-Joon Lee wrote: > To change the window title, you may use > > fig.canvas.set_window_title("My Title") > > But I couldn't find any public method to obtain the current window > title. Kind of awkward, but fig.canvas.manager.window.wm_title() returns the current

Re: [Matplotlib-users] How to give a name to a figure?

2008-09-15 Thread Jae-Joon Lee
To change the window title, you may use fig.canvas.set_window_title("My Title") But I couldn't find any public method to obtain the current window title. If you just want to have a title associated with a figure, I guess you can simply define your title attribute. For example, fig.my_figure_t

[Matplotlib-users] How to give a name to a figure?

2008-09-15 Thread Mathieu Dubois
Hi, I'm a (still) beginner in scipy and I have a small problem with figures. Let me explain. I have to plot a lot of huge data so I have a lot of figures. I have set title and axes names. All the handles are in a list (the list can vary at run time according to the user input). My goal is to

Re: [Matplotlib-users] set font problem.

2008-09-15 Thread John Hunter
If you have 20 minutes to spare, then you can be well on your way to financial stability. 20 minutes is all it takes to listen to two short audio clips, about a revolutionary home business, that has global status. It's creating wealth and extra income for thousands around the world. Want to k

[Matplotlib-users] error width in barplot

2008-09-15 Thread Paul Hartley
*Hello **Friends**, * *This is anand from Sure IT Solutions.* *We have a very Urgent Requirement for *Interface Designer/Human Factors Specialist*. Please Send me the updated profile, rate and contact details. * Position: Interface Designer/Human Factors Specialist Location: Michigan Duration:

Re: [Matplotlib-users] How to set the unit (scale factor, x1e5) on x axis?

2008-09-15 Thread Eric Firing
Stephen George wrote: > Hi Fernando, >> So, I want to plot a line, but controlling the labels on the tickers >> of the x axis. For instance, if I'm plotting (1000, 5), (2000, 10), >> (3000, 10), the ticks on the x axis might show 1000 2000 3000 >>or 1 2 3x1e3. I wa