We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a24121 + 23c3da8 commit 926efd4Copy full SHA for 926efd4
lib/matplotlib/backends/qt_editor/figureoptions.py
@@ -117,8 +117,12 @@ def prepare_data(d, init):
117
color = mcolors.to_hex(
118
mcolors.to_rgba(line.get_color(), line.get_alpha()),
119
keep_alpha=True)
120
- ec = mcolors.to_hex(line.get_markeredgecolor(), keep_alpha=True)
121
- fc = mcolors.to_hex(line.get_markerfacecolor(), keep_alpha=True)
+ ec = mcolors.to_hex(
+ mcolors.to_rgba(line.get_markeredgecolor(), line.get_alpha()),
122
+ keep_alpha=True)
123
+ fc = mcolors.to_hex(
124
+ mcolors.to_rgba(line.get_markerfacecolor(), line.get_alpha()),
125
126
curvedata = [
127
('Label', label),
128
sep,
0 commit comments