You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* separated hatchcolor from edgecolor in patches
* fixed logic for inherit in collections
* added a gallery example
* made suggested changes
* reverted use of `inherit`
* fixed the logic for inheriting from edgecolor
* fixed docs and enhanced tests
* Apply suggestions from code review
Co-authored-by: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com>
* made suggested changes
* minor fix
* use 'edge' instead of 'inherit'
* fix rcsetup
* enhanced docs and added note for follow-up PR
* Made suggested changes
* made suggested changes
* enhanced tests and minor fix in docs
* minor changes to docs
* Changed wording and alt text
* Minor Fix
---------
Co-authored-by: anTon <138380708+r3kste@users.noreply.github.com>
Co-authored-by: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com>
When the *hatchcolor* parameter is specified, it will be used for the hatch.
5
+
If it is not specified, it will fall back to using :rc:`hatch.color`.
6
+
The special value 'edge' uses the patch edgecolor, with a fallback to
7
+
:rc:`patch.edgecolor` if the patch edgecolor is 'none'.
8
+
Previously, hatch colors were the same as edge colors, with a fallback to
9
+
:rc:`hatch.color` if the patch did not have an edge color.
10
+
11
+
.. plot::
12
+
:include-source: true
13
+
:alt: Four Rectangle patches, each displaying the color of hatches in different specifications of edgecolor and hatchcolor. Top left has hatchcolor='black' representing the default value when both hatchcolor and edgecolor are not set, top right has edgecolor='blue' and hatchcolor='black' which remains when the edgecolor is set again, bottom left has edgecolor='red' and hatchcolor='orange' on explicit specification and bottom right has edgecolor='green' and hatchcolor='green' when the hatchcolor is not set.
0 commit comments