On Sat, Aug 2, 2008 at 4:18 AM, sa6113 <[EMAIL PROTECTED]> wrote:
>
> No, unfortuantly matplotlib.axes dosen't have this attribute.
>

You can find demos in matplotlib examples of set_xlim() :

in manual_axis.py :

fig = figure(facecolor='white')
ax = fig.add_subplot(111, frame_on=False)
ax.plot(x, y, 'd', markersize=8, markerfacecolor='blue')
ax.set_xlim(0, 200)
ax.set_ylim(-1.5, 1.5)

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to