-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
[Bug]: axvspan no longer participating in limit calculations #28383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This may be duplicate of #28341, which has a patch, but has not been put into a PR yet, I believe. That said, the discussion there was about |
I took a look at the proposed patch in #28341, and I don't think it addresses the issue. In axhspan, the proposed fix was to .copy() the horizontal interval when updating the datalim: matplotlib/lib/matplotlib/axes/_axes.py Lines 1028 to 1031 in 54729db
and the post in thread indicates that this is unnecessary for vspan, which already has the .copy(): matplotlib/lib/matplotlib/axes/_axes.py Lines 1091 to 1094 in 54729db
However, that's only applied to the y-axis, and it's the x-axis that is causing the issue here. So I think these are two related, but distinct problems. |
So the problem here is that for patches, we ask for whether it contains the data transform: matplotlib/lib/matplotlib/axes/_base.py Lines 2445 to 2448 in d347c32
and for Rectangle this returns False for both x&y. This is likely because a Rectangle is a unit rectangle, with a scaling transform + the data transform.
Since diff --git a/lib/matplotlib/axes/_base.py b/lib/matplotlib/axes/_base.py
index 1cf56c90cc..5f37710ee6 100644
--- a/lib/matplotlib/axes/_base.py
+++ b/lib/matplotlib/axes/_base.py
@@ -2415,17 +2415,17 @@ class _AxesBase(martist.Artist):
if len(vertices):
vertices = np.vstack(vertices)
- patch_trf = patch.get_transform()
- updatex, updatey = patch_trf.contains_branch_seperately(self.transData)
+ data_trf = patch.get_data_transform()
+ updatex, updatey = data_trf.contains_branch_seperately(self.transData)
if not (updatex or updatey):
return
if self.name != "rectilinear":
# As in _update_line_limits, but for axvspan.
- if updatex and patch_trf == self.get_yaxis_transform():
+ if updatex and data_trf == self.get_yaxis_transform():
updatex = False
- if updatey and patch_trf == self.get_xaxis_transform():
+ if updatey and data_trf == self.get_xaxis_transform():
updatey = False
- trf_to_data = patch_trf - self.transData
+ trf_to_data = patch.get_patch_transform()
xys = trf_to_data.transform(vertices)
self.update_datalim(xys, updatex=updatex, updatey=updatey) |
Bug summary
Since upgrading to matplotlib 3.9, axvspan plots no longer seem to be included in limit calculations. I suspect this is due to the change from Polygon to Rectangle, but it does seem to have some unintended consequences.
Code for reproduction
Actual outcome
Note that the axis limits are still centered at 0, and the vspan is out of frame.
Expected outcome
In 3.8.4, the limits would adapt to the location of the generated artist.
Additional information
This is causing us some problems in mir_eval, where we have high-level plot constructors that are built entirely from axvspans for showing time-series segmentation labels.
Operating system
all
Matplotlib Version
3.9.0
Matplotlib Backend
tkagg, but shouldn't matter
Python version
3.12
Jupyter version
n/a
Installation
pip
The text was updated successfully, but these errors were encountered: