Re: [Matplotlib-users] setting the default line style order

2007-02-23 Thread Fernando Perez
On 2/23/07, Fernando Perez [EMAIL PROTECTED] wrote: On 2/23/07, Jouni K. Seppänen [EMAIL PROTECTED] wrote: Brian Blais [EMAIL PROTECTED] writes: Is there a way to specify the default order of line colors and styles, for plot commands given in sequence I don't think there is built-in

Re: [Matplotlib-users] setting the default line style order

2007-02-23 Thread Jouni K . Seppänen
The question of setting the color and line style sequences comes up every now and then, and although there are neat solutions like Fernando demonstrated, perhaps we should add support for them to matplotlib. The Matlab interface seems to be like this: figure

Re: [Matplotlib-users] setting the default line style order

2007-02-23 Thread Eric Firing
Jouni K. Seppänen wrote: The question of setting the color and line style sequences comes up every now and then, and although there are neat solutions like Fernando demonstrated, perhaps we should add support for them to matplotlib. The Matlab interface seems to be like this: figure

Re: [Matplotlib-users] setting the default line style order

2007-02-23 Thread Jouni K . Seppänen
Eric Firing [EMAIL PROTECTED] writes: Jouni K. Seppänen wrote: So, to make the interface familiar to Matlab users, I suggest to add properties line.linestyleorder and line.colororder Are you talking about Axes properties (instance attributes) or rcParam entries or both? In any case, I

[Matplotlib-users] setting the default line style order

2007-02-22 Thread Brian Blais
Hello, I poked around a bit, and couldn't find the answer to this. Is there a way to specify the default order of line colors and styles, for plot commands given in sequence, like: plot(x1,y1) plot(x2,y2) plot(x3,y3) thanks, Brian Blais --