We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f53fb5 commit 267af05Copy full SHA for 267af05
pandas/plotting/_matplotlib/core.py
@@ -1364,11 +1364,10 @@ def _make_plot(self):
1364
if self.orientation == "vertical":
1365
ax.xaxis.update_units(self.ax_index)
1366
self.tick_pos = ax.convert_xunits(self.ax_index).astype(np.int)
1367
- self.ax_pos = self.tick_pos - self.tickoffset
1368
elif self.orientation == "horizontal":
1369
ax.yaxis.update_units(self.ax_index)
1370
self.tick_pos = ax.convert_yunits(self.ax_index).astype(np.int)
1371
+ self.ax_pos = self.tick_pos - self.tickoffset
1372
1373
kwds = self.kwds.copy()
1374
if self._is_series:
0 commit comments