>>>>> "Petar" == Petar Mari§ <[EMAIL PROTECTED]> writes:

    Petar> Hi John,
    >> Does fig = figure(frameon=False) do what you want?

    Petar> Apperently not:
    >>>> from pylab import * x = range(10) figure(1, frameon=False,
    >>>> facecolor='r') scatter(x, x) show()

I found the problem in the figure code and fixed it in svn.  If you
don't have access to svn, you can manually set the attribute like

  fig = figure(1, facecolor='r')
  fig.frameon = False

If you have a backend that supports alpha, however, I would recommend
explicitly setting the alpha channel of the figure rectangle over this
approach

  fig.figurePatch.set_alpha(0.0)

JDH

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to