Thanks to visit codestin.com Credit goes to github.com
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.
1 parent d3d00b2 commit fe54f99Copy full SHA for fe54f99
2 files changed
CHANGELOG
@@ -1,4 +1,6 @@
1
-2007-06-01 Fix mathtext position in svg backend. - NN
+2007-06-02 Set markers to same alpha value as line. - NN
2
+
3
+2007-06-02 Fix mathtext position in svg backend. - NN
4
5
2007-06-01 Deprecate Numeric and numarray for use as numerix. Props to
6
Travis -- job well done. - ADS
lib/matplotlib/lines.py
@@ -444,6 +444,7 @@ def draw(self, renderer):
444
else:
445
gc.set_foreground(self._markeredgecolor)
446
gc.set_linewidth(self._markeredgewidth)
447
+ gc.set_alpha(self._alpha)
448
funcname = self._markers.get(self._marker, '_draw_nothing')
449
markerFunc = getattr(self, funcname)
450
markerFunc(renderer, gc, xt, yt)
0 commit comments