From 2977923dd08c095fc6a5b839e80cdea8036ca5b1 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Sun, 8 Dec 2024 23:31:08 +0100 Subject: [PATCH] DOC: Better explanation of rcParams "patch.edgecolor" and "patch .force_edgecolor" --- lib/matplotlib/mpl-data/matplotlibrc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/matplotlib/mpl-data/matplotlibrc b/lib/matplotlib/mpl-data/matplotlibrc index 092b7a25a7d7..df4f4afadf96 100644 --- a/lib/matplotlib/mpl-data/matplotlibrc +++ b/lib/matplotlib/mpl-data/matplotlibrc @@ -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)