From: John H. <jd...@gm...> - 2010-10-15 12:52:02
|
On Fri, Oct 15, 2010 at 3:10 AM, Robert Fenwick <rob...@ir...> wrote: > 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 What have you tried -- if line is a Line3D object, the following should work: line.set_markeredgecolor('None') Note that 'None' is a string here, not the python object None. This is because None in matplotlib properties means do the default, ie the default value specified in matplotlibrc http://matplotlib.sourceforge.net/users/customizing.html JDH |