Hello Bryan,

On Tuesday 06 May 2008 20:07:58 Bryan Fodness wrote:
> I would like to be able to draw a triangle on the graph outside the axes
> and plot area.  I have used fill before, but that was in the plot area.
>  Can someone push me in the right direction?


Would it be helpful to have a axes instance in the background like:
---------------------------------------------------------------------
from pylab import *

figure(1)
ax1 = axes([0.0, 0.0, 1.0, 1.0], axisbg='0.9')
ax2 = axes([0.3, 0.3, .4, .4], axisbg='white')

ax1.plot(arange(10), color='b')
ax2.plot(linspace(0.0, 1.0, 10.0)**2, color='g')

show()
-----------------------------------------------------------------------

regards Matthias

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to