Revision: 4052
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4052&view=rev
Author: mdboom
Date: 2007-10-29 08:20:13 -0700 (Mon, 29 Oct 2007)
Log Message:
-----------
Revert this example to like it is in the trunk.
Modified Paths:
--------------
branches/transforms/examples/shared_axis_demo.py
Modified: branches/transforms/examples/shared_axis_demo.py
===================================================================
--- branches/transforms/examples/shared_axis_demo.py 2007-10-29 15:04:28 UTC (rev 4051)
+++ branches/transforms/examples/shared_axis_demo.py 2007-10-29 15:20:13 UTC (rev 4052)
@@ -36,12 +36,12 @@
s2 = exp(-t)
s3 = sin(4*pi*t)
ax1 = subplot(311)
-plot(t,s1, "bH")
+plot(t,s1)
setp( ax1.get_xticklabels(), fontsize=6)
## share x only
ax2 = subplot(312, sharex=ax1)
-plot(t, s2, "b<")
+plot(t, s2)
# make these tick labels invisible
setp( ax2.get_xticklabels(), visible=False)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|