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 3c8b54f commit 28f06fcCopy full SHA for 28f06fc
pandas/plotting/_matplotlib/core.py
@@ -1393,11 +1393,10 @@ def _make_plot(self):
1393
if self.orientation == "vertical":
1394
ax.xaxis.update_units(self.ax_index)
1395
self.tick_pos = ax.convert_xunits(self.ax_index).astype(np.int)
1396
- self.ax_pos = self.tick_pos - self.tickoffset
1397
elif self.orientation == "horizontal":
1398
ax.yaxis.update_units(self.ax_index)
1399
self.tick_pos = ax.convert_yunits(self.ax_index).astype(np.int)
1400
+ self.ax_pos = self.tick_pos - self.tickoffset
1401
1402
kwds = self.kwds.copy()
1403
if self._is_series:
0 commit comments