-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Behaviour of c=None is inconsistent in 2.0 #7899
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 bisects back to c8a365a |
Sigh, the problem is that there is a user supplied color, so the color cycle is being ignored in errorbar and falling through to the default line color. |
@Zaharid Sorry for my whining above. Thank you for a clear bug report! Very much appreciate it 😄 . |
tacaswell
added a commit
to tacaswell/matplotlib
that referenced
this issue
Feb 7, 2017
Passing in `None` is a request from the user to 'do the default thing', but by keeping the key:value in the kwargs dict it prevents the default errorbar behavior and falls through to default Line2D behavior which is likely not what is wanted. closes matplotlib#7899
Should this be closed now that #8037 is merged? |
Yep, looks fixed to me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following code
Produces two lines with the same color (first one of the cycle). In 1.5 it is two different colors.
It is also two colors if I change
errorbar
toplot
.The text was updated successfully, but these errors were encountered: