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
Calling Line2D with markerfacecolor='None' should yield a marker with just an outline. That works fine. But if a call to artist.set_alpha( X ) where is X is anything but None is made, then the marker is filled no matter what with black color and alpha=X.
Code for reproduction
importpylabaspp.ion()
a=p.plot( [1,2], marker='o' )[0]
# Works, marker is unfilleda.set_markerfacecolor( 'None' )
# Fails - marker is filled with greya.set_alpha( 0.5 )
Bug report
Calling Line2D with markerfacecolor='None' should yield a marker with just an outline. That works fine. But if a call to artist.set_alpha( X ) where is X is anything but None is made, then the marker is filled no matter what with black color and alpha=X.
Code for reproduction
Actual outcome
Matplotlib version
print(matplotlib.get_backend())
): Qt5AggThe text was updated successfully, but these errors were encountered: