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 5497d47 commit 071158bCopy full SHA for 071158b
lib/matplotlib/collections.py
@@ -1724,8 +1724,8 @@ def draw(self, renderer):
1724
1725
if self.have_units():
1726
if len(self._offsets):
1727
- xs = self.convert_xunits(self._offsets[:0])
1728
- ys = self.convert_yunits(self._offsets[:1])
+ xs = self.convert_xunits(self._offsets[:, 0])
+ ys = self.convert_yunits(self._offsets[:, 1])
1729
offsets = zip(xs, ys)
1730
1731
offsets = np.asarray(offsets, np.float_)
0 commit comments