-
-
Notifications
You must be signed in to change notification settings - Fork 311
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
Auto limits broken with recipes on 0.19.7 and 0.19.8 #3176
Comments
Hm this must be because the limits for some reason started to include the "whisker" linesegments at the ends of the errorbars, but only if this plot type is not top-level but nested in another recipe. So then it sets the limits way too large |
@jkrumbiegel why the asymmetry in the overlarge limits? (xmax is far more inappropriate than xmin) |
If it does what I think it does, it looks at the |
The pr changed whiskers to be plotted in |
attempt at a fix in #3179, which does indeed fix the MWE here |
@ffreyer FYI I noticed that calling |
In that case For Makie.jl/src/basic_recipes/hvlines.jl Lines 11 to 19 in b9f25b9
For axis limits to not freak out these plots need to ignore one dimension, rather than the limits of one of the subplots. I'm not sure if there is a way to do this other than the autolimit attributes. Maybe with NaN in the data_limits Rect? |
I don't really think so, I did want to change that at some point. Either NaN or maybe |
Could we go ahead and get a patch release with this fix? It would make teaching this week easier ❤️ |
@SimonDanisch thanks! And yeah, we're not going to run out of release numbers, so release early, release often. 🚀 |
@SimonDanisch @ffreyer This seems to be back in 0.20.x at least with |
0.20.2 had some more fixes for vlines etc. If you're not on 0.20.2+ try updating |
On latest (0.20.3). 😢 Notably, this problem now occurs in the |
]activate --temp; add Makie
)version info
MWE
Developed when diagnosing a PR in MixedModelsMakie
Makie 0.19.8
Makie 0.19.7
Makie 0.19.6
Bisected to #8ccb6bdd
Possibly related to #3051
I am unable to replicate this when calling
scatter!
anderrorbars!
directly -- it seems to be some interaction with the recipe system.The text was updated successfully, but these errors were encountered: