On Thu, Jun 17, 2010 at 10:29 AM, Jeff Perry <jef...@gmail.com> wrote:
> can someone tell me how to turn off the frame on the colorbar?
>
> i tried this
>
> ...
> cb=plt.colorbar()
> plt.axes(cb.ax)
> plt.box(on=False)

There's no function or parameter to control this at the moment
unfortunately (I've marked this as a TODO, but I don't see a quick way
to add it at the moment).

The following gets it done, however:

cb.ax.artists.remove(cb.outline)

Ryan

-- 
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to