Hi,

John T Whelan <[EMAIL PROTECTED]> wrote:
> set markerfacecolor (a.k.a. mfc) = 'None' (make sure you include the 
> quotes).

This works with plot:

plot(randn(5),randn(5), 'bo', mfc="None", mec='b')

but not with scatter:

scatter(randn(5),randn(5), edgecolor='b', facecolor='None')

returns:

--> 141         self._facecolors = colorConverter.to_rgba_list(c)
TypeError: c must be a matplotlib color arg or a sequence of them

Is there a way to make 'transparent' markers with scatter? (this relates 
to an old thread, 
http://thread.gmane.org/gmane.comp.python.matplotlib.general/7842, but 
I'd like to know if there was any news about that?)

Cheers.
-- 
    .~.   Yannick COPIN  (o:>*  Doctus cum libro
    /V\   Institut de physique nucleaire de Lyon (IN2P3 - France)
   // \\  Tel: (33/0) 472 431 968     AIM: YnCopin ICQ: 236931013
  /(   )\ http://snovae.in2p3.fr/ycopin/
   ^`~'^

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to