8000 Default boxplot style rebase by jenshnielsen · Pull Request #6481 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Default boxplot style rebase #6481

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

Merged
merged 13 commits into from
May 30, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
When setting the flier marker override all colors
Setting color alone has no effect as facecolor and edgecolor are still set to the default values
  • Loading branch information
jenshnielsen committed May 30, 2016
commit ac43dabdb06ccea96269d1e244ad40b85ad889a1
2 changes: 2 additions & 0 deletions 7E0E lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3346,6 +3346,8 @@ def _update_dict(dictionary, rc_name, properties):
# filled symbol, if the users want more control use
# flierprops
flierprops['color'] = color
flierprops['markerfacecolor'] = color
flierprops['markeredgecolor'] = color

# replace medians if necessary:
if usermedians is not None:
Expand Down
0