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
Currently the color spec parser does only check for RGB hex string color values in the form of #FFFFFF. If the user wants to pass RGBA values the color must be presented as a 4-tuple. For better user accesibility the parser could also accept color values in RGBA hex string format #FFFFFFAA directly, makeing the following code possible:
plt.rcParams['axes.color_cycle'][0] = "#FFFFFFAA"
The text was updated successfully, but these errors were encountered:
Currently the color spec parser does only check for RGB hex string color values in the form of
#FFFFFF
. If the user wants to pass RGBA values the color must be presented as a 4-tuple. For better user accesibility the parser could also accept color values in RGBA hex string format#FFFFFFAA
directly, makeing the following code possible:The text was updated successfully, but these errors were encountered: