Revision: 6441
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6441&view=rev
Author:   jdh2358
Date:     2008-11-24 03:53:14 +0000 (Mon, 24 Nov 2008)

Log Message:
-----------
fixed a small bug in fill_between

Modified Paths:
--------------
    trunk/matplotlib/examples/pylab_examples/fill_between.py

Modified: trunk/matplotlib/examples/pylab_examples/fill_between.py
===================================================================
--- trunk/matplotlib/examples/pylab_examples/fill_between.py    2008-11-23 
20:15:36 UTC (rev 6440)
+++ trunk/matplotlib/examples/pylab_examples/fill_between.py    2008-11-24 
03:53:14 UTC (rev 6441)
@@ -28,7 +28,7 @@
 # because of edge effects over multiple contiguous regions.
 fig = figure()
 ax = fig.add_subplot(111)
-ax1.plot(x, y1, x, y2, color='black')
+ax.plot(x, y1, x, y2, color='black')
 ax.fill_between(x, y1, y2, where=y2>y1, facecolor='green')
 ax.fill_between(x, y1, y2, where=y2<=y1, facecolor='red')
 ax.set_title('fill between where')


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to