Thanks to visit codestin.com
Credit goes to github.com

Skip to content

DOC: Better explanation of rcParams "patch.edgecolor" and "patch.force_edgecolor" #29260

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 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
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
10 changes: 8 additions & 2 deletions lib/matplotlib/mpl-data/matplotlibrc
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,14 @@
## for more information on patch properties.
#patch.linewidth: 1.0 # edge width in points.
#patch.facecolor: C0
#patch.edgecolor: black # if forced, or patch is not filled
#patch.force_edgecolor: False # True to always use edgecolor
#patch.edgecolor: black # By default, Patches and Collections do not draw edges.
# This value is only used if facecolor is "none"
# (an Artist without facecolor and edgecolor would be
# invisible) or if patch.force_edgecolor is True.
#patch.force_edgecolor: False # By default, Patches and Collections do not draw edges.
# Set this to True to draw edges with patch.edgedcolor
# as the default edgecolor.
# This is mainly relevant for styles.
#patch.antialiased: True # render patches in antialiased (no jaggies)


Expand Down
Loading