-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Fix errorbar zorder v1.2 #1628
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
Fix errorbar zorder v1.2 #1628
Conversation
The 3.1 build failed with errors that look like Travis didn't actually use 3.1 to run the tests. |
@tacaswell Thanks for the patch. I'll leave this up for a day or so to allow the opinions of others to roll in before merging. |
A related issue: #409 |
@WeatherGod Does this patch fix that issue for you? |
I have yet to check, I was merely noting it for posterity. I have a huge backlog of emails to work through today... |
Do not need to explicitly call set_zorder because it gets done in the call to coll.update.
+1 |
ax.axhline(1,color='red',lw=10,zorder=1) | ||
ax.axhline(5,color='green',lw=10,zorder=10) | ||
ax.axvline(7,color='m',lw=10,zorder=7) | ||
ax.axvline(2,color='k',lw=10,zorder=3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PEP8: A space is needed after each comma in the above calls to ax[vh]line
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And the call to plot
.
Once those nitpicks are addressed I'll merge this. Thanks @tacaswell. |
fix for issue #1622 + unit test.