-
Notifications
You must be signed in to change notification settings - Fork 99
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_ticks raises ValueError for some inputs #824
Comments
Note that we have |
Not a fix, but a work-around: if you can create a replacement without the error, it is straightforward to create a new tick generator around the replacement and use that in the downstream app. |
Also, separately, this feels like it is a symptom, not the root cause: the axis bounds being inverted smells like there a problem with the values being passed to the ticking system. In particular, are we in a situation where the width (or height, depending on orientation) of the axis component is negative? If so, then all sorts of things may be messed up beyond ticking. |
FWIW - In this case, Line 272 in 0907d1d
and that is because log10 is getting negative inputs hereLine 392 in 0907d1d
|
Tentatively closing as this should be resolved (at least in the sense of treating the symptoms) by #848 |
We're running into the following problem with
auto_ticks
on a downstream project, leading to a blank plot window.Expected behaviour: a list of tick locations is returned (possibly the empty list).
The text was updated successfully, but these errors were encountered: