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