|
From: John H. <jd...@gm...> - 2010-01-04 03:09:03
|
On Sun, Jan 3, 2010 at 3:54 PM, Eric Firing <ef...@ha...> wrote: > The only problem is that lines.color is the default for LineCollection and > Line2D, both of which are fairly separate from Axes, so having them default > to rcParams['axes.color_cycle'][0] seems a little odd. Yes, I was worrying about the same thing while cooking dinner :-) A line can be added to a Figure or an Axes, so perhaps the default color should not come from there. What about a module level attribute matplotlib.colors.cycle by an rc param "colors.cycle" and then the default Line2D and LineCollection color can default to matplotlib.colors.cycle[0]. |