8000 Add hatch linewidth setter in Graphics Context Base · matplotlib/matplotlib@d1b935f · GitHub
[go: up one dir, main page]

Skip to content

Commit d1b935f

Browse files
committed
Add hatch linewidth setter in Graphics Context Base
1 parent d45dfbb commit d1b935f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/matplotlib/backend_bases.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,10 @@ def get_hatch_linewidth(self):
10061006
"""Get the hatch linewidth."""
10071007
return self._hatch_linewidth
10081008

1009+
def set_hatch_linewidth(self, hatch_linewidth):
1010+
"""Set the hatch linewidth."""
1011+
self._hatch_linewidth = hatch_linewidth
1012+
10091013
def get_sketch_params(self):
10101014
"""
10111015
Return the sketch parameters for the artist.

0 commit comments

Comments
 (0)
0