From: <md...@us...> - 2008-12-29 14:10:31
|
Revision: 6709 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6709&view=rev Author: mdboom Date: 2008-12-29 14:10:22 +0000 (Mon, 29 Dec 2008) Log Message: ----------- Oops in hatch_demo.py Modified Paths: -------------- trunk/matplotlib/examples/pylab_examples/hatch_demo.py Modified: trunk/matplotlib/examples/pylab_examples/hatch_demo.py =================================================================== --- trunk/matplotlib/examples/pylab_examples/hatch_demo.py 2008-12-29 14:08:13 UTC (rev 6708) +++ trunk/matplotlib/examples/pylab_examples/hatch_demo.py 2008-12-29 14:10:22 UTC (rev 6709) @@ -12,7 +12,7 @@ xytext=(0, 5), xycoords="axes fraction", textcoords="offset points", ha="center" ) -ax1.bar(range(1,5), range(1,5), color='gray', edgecolor='red', hatch="/") +ax1.bar(range(1,5), range(1,5), color='gray', edgecolor='black', hatch="/") ax2 = fig.add_subplot(122) @@ -23,5 +23,3 @@ bar.set_hatch(pattern) plt.show() -plt.savefig("test.pdf") -plt.savefig("test.ps") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |