Skip to content

Commit d82e5aa

Browse files
author
y-p
committed
BUG: Log scale on bar chart hides bars GH3247
1 parent 682b39e commit d82e5aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tools/plotting.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ def _make_plot(self):
13701370
if self.subplots:
13711371
ax = self._get_ax(i) # self.axes[i]
13721372
rect = bar_f(ax, self.ax_pos, y,
1373-
self.bar_width, start=pos_prior, **kwds)
1373+
self.bar_width, **kwds)
13741374
ax.set_title(label)
13751375
elif self.stacked:
13761376
mask = y > 0
@@ -1381,7 +1381,7 @@ def _make_plot(self):
13811381
neg_prior = neg_prior + np.where(mask, 0, y)
13821382
else:
13831383
rect = bar_f(ax, self.ax_pos + i * 0.75 / K, y, 0.75 / K,
1384-
start=pos_prior, label=label, **kwds)
1384+
label=label, **kwds)
13851385
rects.append(rect)
13861386
labels.append(label)
13871387

0 commit comments

Comments
 (0)