scatter points - way to remove border?

Hi,

I spent a (VERY) little bit of time trying to find where the border is
drawn around each point/marker on a scatter plot and unfortunately got
lost in the ether.

I've not found a standardized way in the api to do this. I found that
for lines, there's a "markeredgewidth" mentioned in the documentation,
but I can't seem to set this for scatter plots.

Any help would be greatly appreciated.
jeremy

···

--
Jeremy Kelley <jeremy@...367...>
     All plenty which is not my God is poverty to me. -Augustine

Quoting jeremy@...367... (jeremy@...367...):

I spent a (VERY) little bit of time trying to find where the border is
drawn around each point/marker on a scatter plot and unfortunately got
lost in the ether.

I've not found a standardized way in the api to do this. I found that
for lines, there's a "markeredgewidth" mentioned in the documentation,
but I can't seem to set this for scatter plots.

well... as is usually the case, as soon as I admitted defeat and asked
for help, I found the solution. :wink:

----note---------
plot = scatter(x,y,s=s,c=c,alpha=0.3)
set(plot,'linewidth',0.0) # <--- this is what does it
----end----------

maybe someone else will find this useful, or at least google will pick
it up for the next time I forget. heh.

If there's a better way, I'm interested to know it, but this works
quite nicely.

jeremy

···

--
Jeremy Kelley <jeremy@...367...>
     All plenty which is not my God is poverty to me. -Augustine