Revision: 4642
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4642&view=rev
Author:   mdboom
Date:     2007-12-06 06:55:01 -0800 (Thu, 06 Dec 2007)

Log Message:
-----------
Revert examples to work best without auto-layout.

Modified Paths:
--------------
    branches/transforms/examples/colorbar_only.py
    branches/transforms/examples/figlegend_demo.py
    branches/transforms/examples/finance_demo.py
    branches/transforms/examples/mathtext_demo.py

Modified: branches/transforms/examples/colorbar_only.py
===================================================================
--- branches/transforms/examples/colorbar_only.py       2007-12-06 13:37:29 UTC 
(rev 4641)
+++ branches/transforms/examples/colorbar_only.py       2007-12-06 14:55:01 UTC 
(rev 4642)
@@ -7,7 +7,7 @@
 
 # Make a figure and axes with dimensions as desired.
 fig = pylab.figure(figsize=(8,1.5))
-ax = fig.add_axes([0.05, 0.05, 0.9, 0.9])
+ax = fig.add_axes([0.05, 0.4, 0.9, 0.5])
 
 # Set the colormap and norm to correspond to the data for which
 # the colorbar will be used.

Modified: branches/transforms/examples/figlegend_demo.py
===================================================================
--- branches/transforms/examples/figlegend_demo.py      2007-12-06 13:37:29 UTC 
(rev 4641)
+++ branches/transforms/examples/figlegend_demo.py      2007-12-06 14:55:01 UTC 
(rev 4642)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 from pylab import *
-ax1 = axes([0.05, 0.1, 0.4, 0.7])
+ax1 = axes([0.1, 0.1, 0.4, 0.7])
 ax2 = axes([0.55, 0.1, 0.4, 0.7])
 
 x = arange(0.0, 2.0, 0.02)

Modified: branches/transforms/examples/finance_demo.py
===================================================================
--- branches/transforms/examples/finance_demo.py        2007-12-06 13:37:29 UTC 
(rev 4641)
+++ branches/transforms/examples/finance_demo.py        2007-12-06 14:55:01 UTC 
(rev 4642)
@@ -22,7 +22,7 @@
     raise SystemExit
 
 fig = figure()
-# fig.subplots_adjust(bottom=0.2)
+fig.subplots_adjust(bottom=0.2)
 ax = fig.add_subplot(111)
 ax.xaxis.set_major_locator(mondays)
 ax.xaxis.set_minor_locator(alldays)

Modified: branches/transforms/examples/mathtext_demo.py
===================================================================
--- branches/transforms/examples/mathtext_demo.py       2007-12-06 13:37:29 UTC 
(rev 4641)
+++ branches/transforms/examples/mathtext_demo.py       2007-12-06 14:55:01 UTC 
(rev 4642)
@@ -7,7 +7,7 @@
 from matplotlib.pyplot import figure, show
 
 fig = figure()
-# fig.subplots_adjust(bottom=0.2)
+fig.subplots_adjust(bottom=0.2)
 
 ax = fig.add_subplot(111, axisbg='y')
 ax.plot([1,2,3], 'r')


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

-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to