[Matplotlib-users] setdashes bug

2006-12-20 Thread Alan G Isaac
If ln is a Line2D then ln.set_dashes([]) does not give the expected solid line. version: 0.87.7 Cheers, Alan Isaac - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

Re: [Matplotlib-users] setdashes bug

2006-12-20 Thread John Hunter
Alan == Alan G Isaac [EMAIL PROTECTED] writes: Alan If ln is a Line2D then ln.set_dashes([]) does not give the Alan expected solid line. version: 0.87.7 Is this expected? I wouldn't expect it. set_dashes is supposed to take an even length sequence of off-on ink. Perhaps it should

Re: [Matplotlib-users] setdashes bug

2006-12-20 Thread Alan G Isaac
On Wed, 20 Dec 2006, John Hunter apparently wrote: Is this expected? I wouldn't expect it. It is pretty standard. See e.g. the PostScript Language Reference Manual. And, how else to set a solid line with set_dashes? Cheers, Alan Isaac

Re: [Matplotlib-users] setdashes bug

2006-12-20 Thread John Hunter
Alan == Alan G Isaac [EMAIL PROTECTED] writes: Alan It is pretty standard. See e.g. the PostScript Language Alan Reference Manual. And, how else to set a solid line with Alan set_dashes? I didn't know that about postscript. I can easily implement it if it is the right thing to do