Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a1e0f3d

Browse files
committed
Revert this example to like it is in the trunk.
svn path=/branches/transforms/; revision=4052
1 parent f883f79 commit a1e0f3d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/shared_axis_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
s2 = exp(-t)
3737
s3 = sin(4*pi*t)
3838
ax1 = subplot(311)
39-
plot(t,s1, "bH")
39+
plot(t,s1)
4040
setp( ax1.get_xticklabels(), fontsize=6)
4141

4242
## share x only
4343
ax2 = subplot(312, sharex=ax1)
44-
plot(t, s2, "b<")
44+
plot(t, s2)
4545
# make these tick labels invisible
4646
setp( ax2.get_xticklabels(), visible=False)
4747

0 commit comments

Comments
 (0)