Issue
For example, say I want to plot with color='None'
but markeredgecolor='mediumseagreen'
with the edges having alpha=0.5
. Is that possible?
Solution
As answered in the comments:
Either pass the color as an RGBA tuple or get the RGBA value from colorConverter
:
matplotlib.colors.colorConverter.to_rgba('mediumseagreen', alpha=.5)
Answered By - Shovalt
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.