Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e8ce81 commit eed5058Copy full SHA for eed5058
1 file changed
examples/polar_bar.py
@@ -13,7 +13,7 @@
13
theta = npy.arange(0.0, 2*npy.pi, 2*npy.pi/N)
14
radii = 10*npy.random.rand(N)
15
width = npy.pi/4*npy.random.rand(N)
16
-bars = ax.bar(theta, radii, width=width, bottom=0.1)
+bars = ax.bar(theta, radii, width=width, bottom=0.0)
17
for r,bar in zip(radii, bars):
18
bar.set_facecolor( cm.jet(r/10.))
19
bar.set_alpha(0.5)
0 commit comments