From: John H. <jdh...@ac...> - 2006-06-30 15:23:55
|
>>>>> "Zhang" == Zhang Le <zha...@gm...> writes: Zhang> Hi, I'm trying to plot a set of points using given RGB Zhang> tuples as color: plot([0.5],[0.5], '.', markersize=50, Zhang> color=(0.5,0.5,0.5)) there is no error but the point I got Zhang> is still blue. Any tips? markers and lines have different property names. plot([0.5],[0.5], '.', markersize=50, markerfacecolor=(0.5,0.5,0.5)) the properties that control markers are markerfacecolor, markeredgecolor and markeredgewidth, with abbreviations mfc, mec and mew. JDH |