Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 55b8834

Browse files
committed
Merged revisions 7229 via svnmerge from
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r7229 | leejjoon | 2009-06-21 14:44:53 -0400 (Sun, 21 Jun 2009) | 2 lines fixed axes.scatter bug that circular symbol style is ignored ........ svn path=/trunk/matplotlib/; revision=7230
1 parent be69cd1 commit 55b8834

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5287,7 +5287,7 @@ def scatter(self, x, y, s=20, c='b', marker='o', cmap=None, norm=None,
52875287

52885288
syms = { # a dict from symbol to (numsides, angle)
52895289
's' : (4,math.pi/4.0,0), # square
5290-
'o' : (20,3,0), # circle
5290+
'o' : (0,0,3), # circle
52915291
'^' : (3,0,0), # triangle up
52925292
'>' : (3,math.pi/2.0,0), # triangle right
52935293
'v' : (3,math.pi,0), # triangle down
@@ -5375,7 +5375,7 @@ def scatter(self, x, y, s=20, c='b', marker='o', cmap=None, norm=None,
53755375
numsides, rotation = marker[0], marker[2]
53765376
sym = True
53775377

5378-
if marker[1] in (1,2):
5378+
if marker[1] in (1,2,3):
53795379
symstyle = marker[1]
53805380

53815381
else:

0 commit comments

Comments
 (0)