Christopher Barker wrote:
> Hi folks,
> 
> Is there an OO way to get pyplot.axhline() ?
> 
> I found Axes.hlines, but it's not as convienent for doing a quick 
> horizontal line all the way across the axes: I need to specify the x coords.
> 
> thanks,
> 
> -Chris
> 
> 

Chris,

Maybe it is new, but svn trunk shows that pyplot.axhline is just calling 
the axes method of the same name.

Eric

def axhline(*args, **kwargs):
     # allow callers to override the hold state by passing hold=True|False
     b = ishold()
     h = kwargs.pop('hold', None)
     if h is not None:
         hold(h)
     try:
         ret =  gca().axhline(*args, **kwargs)
         draw_if_interactive()
     except:
         hold(b)
         raise

     hold(b)
     return ret
if Axes.axhline.__doc__ is not None:
     axhline.__doc__ = dedent(Axes.axhline.__doc__) + """

------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to