Rich Shepard wrote: > I've read the users guide and API (both as pdf and on the web site), and > do not see how to configure the axes for only left and bottom, and the grid > for only horizontal lines. > > The axes(rect, w) is used to specify the position of the left and bottom > lines plus the width and height of the box. What do I put in > ~/.matplotlib/matplotlibrc to specify no top or right axes, and no vertical > grid lines? > > Rich >
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. Here is one way of turning off vertical grid lines: xgl = ax.xaxis.get_gridlines() for l in gl: l.set_visible(False) 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. Eric ------------------------------------------------------------------------- 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