Skip to content

Commit 6147541

Browse files
committed
BUG: work around matplotlib bug 775
1 parent cae2967 commit 6147541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3995,7 +3995,7 @@ def _bar_plot(self, axes, subplots=False, use_index=True, grid=True,
39953995
ax.set_title(col)
39963996
else:
39973997
rects.append(ax.bar(xinds + i * 0.75 / K, y, 0.75 / K,
3998-
bottom=np.zeros(N), label=col,
3998+
bottom=np.zeros(N), label=str(col),
39993999
color=colors[i % len(colors)], **kwds))
40004000
labels.append(col)
40014001

0 commit comments

Comments
 (0)