>>>>> "danny" == danny shevitz <dan...@ya...> writes:
danny> Howdy, Another stupid problem. Before .61 when I plotted
danny> with symbols, the symbols were unfilled, now they are
danny> filled. How do I control this? I can't find any
danny> markerfilled property in the Line2D class.
You can override the markerfacecolor as a kwarg
>>> plot(arange(10), 'ro', markerfacecolor=None)
You can also use the abbreviation 'mfc'
>>> plot(arange(10), 'ro', mfc=None)
Should help!
JDH
|