Revision: 4734
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4734&view=rev
Author:   mdboom
Date:     2007-12-14 12:08:22 -0800 (Fri, 14 Dec 2007)

Log Message:
-----------
Fix minimum value of bars so it looks correct upon zooming.

Modified Paths:
--------------
    branches/transforms/examples/polar_bar.py

Modified: branches/transforms/examples/polar_bar.py
===================================================================
--- branches/transforms/examples/polar_bar.py   2007-12-14 20:07:59 UTC (rev 
4733)
+++ branches/transforms/examples/polar_bar.py   2007-12-14 20:08:22 UTC (rev 
4734)
@@ -13,7 +13,7 @@
 theta = npy.arange(0.0, 2*npy.pi, 2*npy.pi/N)
 radii = 10*npy.random.rand(N)
 width = npy.pi/4*npy.random.rand(N)
-bars = ax.bar(theta, radii, width=width, bottom=0.1)
+bars = ax.bar(theta, radii, width=width, bottom=0.0)
 for r,bar in zip(radii, bars):
     bar.set_facecolor( cm.jet(r/10.))
     bar.set_alpha(0.5)


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

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to