Since you are talking about markers, I assume that you made the plot with
the scatter() function.

The scatter() function creates the appropriate collection of patches
(polygon, circle, etc.)  depending on what the marker style was passed to
it.  As such, the normal 'marker*' properties do not work, as there is just
a collection patches that is being drawn.  So the properties that you are
looking for in your situation are here:

http://matplotlib.sourceforge.net/api/collections_api.html#matplotlib.collections.PatchCollection

I believe that the property you are looking for is 'edgewidth'.  E.g. (and I
think this is right, but not where I can test right now):

the_artist.set_edgewidth(0.0)

Which I believe will work, or you may have to do

the_artist.set_edgewidths((0.0,))

But anyway, hopefully this is enough to set you on your way.


On Fri, Oct 15, 2010 at 4:10 AM, Robert Fenwick <
robert.fenw...@irbbarcelona.org> wrote:

>
> Hi,
>
> I have a 3d plot that I am trying to plot and I can not get rid of the
> marker edge. an example would help
>
> Bryn
>
>
>
>
>
>
>
> ------------------------------------------------------------------------------
> Download new Adobe(R) Flash(R) Builder(TM) 4
> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly
> Flex(R) Builder(TM)) enable the development of rich applications that run
> across multiple browsers and platforms. Download your free trials today!
> http://p.sf.net/sfu/adobe-dev2dev
> _______________________________________________
> Matplotlib-users mailing list
> Matplotlib-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>



-- 
Daniel Hyams
dhy...@gmail.com
------------------------------------------------------------------------------
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to