Re: [Matplotlib-users] possible to expand the current Colorcycle?

2007-12-05 Thread John Hunter
On Dec 5, 2007 6:38 AM, Søren Nielsen <[EMAIL PROTECTED]> wrote: > Hi, > > Is it possible to expand the colorcycle that matplotlib uses by default? > > in axes.py, class _process_plot_var_args, def _clear_color_cycle(self) It > seems that self.colors are hardcoded to be self.colors = > ['b','g','r'

[Matplotlib-users] possible to expand the current Colorcycle?

2007-12-05 Thread Søren Nielsen
Hi, Is it possible to expand the colorcycle that matplotlib uses by default? in axes.py, class _process_plot_var_args, def _clear_color_cycle(self) It seems that self.colors are hardcoded to be self.colors = ['b','g','r','c','m','y','k'] ... is there a way to extend this? (Without changing the ma