On Thu, 20 Mar 2008, Eric Firing wrote:

> Sorry, but those options are not presently available at the rc level. Mpl 
> simply does not have easy support for that style of plot.  It is on the wish 
> list.

Eric,

   I'm surprised because this is quite common ... at least in my needs over
the years.

> To get rid of the upper and right sides of the box I think you would have
> to do something like "box('off')" and then use hline and vline calls or
> methods to manually put in the lower and left boundaries.

   I use:

   p.p.box(on=False)
   p.axhline(linewidth=1, xmin=0, color='black')
   p.axvline(linewidth=1, ymin=0, color='black')

but the frameless display now has negative values (x = -10, y = -0.2) when
the scales should be x = [0, 50] and y = [0.0, 1.0].

   I want to learn how to get these correct before addressing the grid lines.
Actually, I can turn off the grid lines and use axhline for each one I want.

Thanks,

Rich

-- 
Richard B. Shepard, Ph.D.               |  Integrity            Credibility
Applied Ecosystem Services, Inc.        |            Innovation
<http://www.appl-ecosys.com>     Voice: 503-667-4517      Fax: 503-667-8863

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to