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 2d0c3ba commit cb9b2efCopy full SHA for cb9b2ef
lib/matplotlib/axes/_axes.py
@@ -5409,7 +5409,10 @@ def get_interp_point(idx):
5409
np.column_stack([ind[where], dep2[where]])])
5410
if ind_dir == "y":
5411
pts = pts[:, ::-1]
5412
- self.update_datalim(pts, updatex=True, updatey=True)
+
5413
+ if "transform" not in kwargs:
5414
+ self.update_datalim(pts, updatex=True, updatey=True)
5415
5416
self.add_collection(collection, autolim=False)
5417
self._request_autoscale_view()
5418
return collection
0 commit comments