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

Skip to content

Commit 63eae2a

Browse files
committed
added get edgecolor accessor method to collections
svn path=/trunk/matplotlib/; revision=5607
1 parent d4edb56 commit 63eae2a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/matplotlib/collections.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,10 @@ def get_facecolor(self):
309309
return self._facecolors
310310
get_facecolors = get_facecolor
311311

312+
def get_edgecolor(self):
313+
return self._edgecolors
314+
get_edgecolors = get_edgecolor
315+
312316
def set_edgecolor(self, c):
313317
"""
314318
Set the edgecolor(s) of the collection. *c* can be a

0 commit comments

Comments
 (0)