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 9208b5e commit 2142b75Copy full SHA for 2142b75
1 file changed
examples/pylab_examples/bar_stacked.py
@@ -12,7 +12,7 @@
12
ind = np.arange(N) # the x locations for the groups
13
width = 0.35 # the width of the bars: can also be len(x) sequence
14
15
-p1 = plt.bar(ind, menMeans, width, yerr=menStd)
+p1 = plt.bar(ind, menMeans, width, color='#d62728', yerr=menStd)
16
p2 = plt.bar(ind, womenMeans, width,
17
bottom=menMeans, yerr=womenStd)
18
0 commit comments