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

Skip to content

Commit a1649d9

Browse files
committed
Fix grayscale specification in demo
svn path=/trunk/matplotlib/; revision=3444
1 parent bed3641 commit a1649d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/integral_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def func(x):
1818
ix = arange(a, b, 0.01)
1919
iy = func(ix)
2020
verts = [(a,0)] + zip(ix,iy) + [(b,0)]
21-
poly = Polygon(verts, facecolor=0.8, edgecolor='k')
21+
poly = Polygon(verts, facecolor='0.8', edgecolor='k')
2222
ax.add_patch(poly)
2323

2424
text(0.5 * (a + b), 30,

0 commit comments

Comments
 (0)