Re: [Matplotlib-users] where is line after remove?

2013-09-14 Thread Federico Ariza
Hello Finally (after long time) I managed to get time and courage to make my first PR with this little modification https://github.com/matplotlib/matplotlib/pull/2417 Federico On Tue, Mar 13, 2012 at 3:17 PM, John Hunter jdh2...@gmail.com wrote: On Tue, Mar 13, 2012 at 1:20 PM, Federico

Re: [Matplotlib-users] where is line after remove?

2012-03-13 Thread Goyo
El día 13 de marzo de 2012 00:25, Federico Ariza ariza.feder...@gmail.com escribió: [...] I want to turn visibility on and off for lines. I can not use the visible property, using it the autolimits relim keeps considering the lines as being there. As consequence the limits are wrong (if we

Re: [Matplotlib-users] where is line after remove?

2012-03-13 Thread Federico Ariza
Hi That is exactly what I am doing, but I thought it was kept somewhere. I like the idea of upstream modification of relim. Thanks Federico On Tue, Mar 13, 2012 at 2:13 PM, Goyo goyod...@gmail.com wrote: El día 13 de marzo de 2012 00:25, Federico Ariza ariza.feder...@gmail.com escribió:

Re: [Matplotlib-users] where is line after remove?

2012-03-13 Thread Benjamin Root
On Tue, Mar 13, 2012 at 1:20 PM, Federico Ariza ariza.feder...@gmail.comwrote: Hi That is exactly what I am doing, but I thought it was kept somewhere. I like the idea of upstream modification of relim. Thanks Federico Federico, Why would you think it is kept somewhere? The method is

Re: [Matplotlib-users] where is line after remove?

2012-03-13 Thread Federico Ariza
Ben Yest It is called remove but not destroy ;) Given that the relim takes in count the invisible lines, I thougth it was planned that you could remove and add the lines from its axes. Thanks Federico On Tue, Mar 13, 2012 at 2:44 PM, Benjamin Root ben.r...@ou.edu wrote: On Tue, Mar 13,

Re: [Matplotlib-users] where is line after remove?

2012-03-13 Thread John Hunter
On Tue, Mar 13, 2012 at 1:20 PM, Federico Ariza ariza.feder...@gmail.comwrote: Hi That is exactly what I am doing, but I thought it was kept somewhere. I like the idea of upstream modification of relim. It would be trivial to add a kwarg to relim: include_invisible=True which defaults to

Re: [Matplotlib-users] where is line after remove?

2012-03-13 Thread Eric Firing
On 03/13/2012 09:17 AM, John Hunter wrote: On Tue, Mar 13, 2012 at 1:20 PM, Federico Ariza ariza.feder...@gmail.com mailto:ariza.feder...@gmail.com wrote: Hi That is exactly what I am doing, but I thought it was kept somewhere. I like the idea of upstream modification of

[Matplotlib-users] where is line after remove?

2012-03-12 Thread Federico Ariza
Hi Working on my little experiment (backend with edition capabilities https://github.com/fariza/MPL-Experimental-Backend) I want to turn visibility on and off for lines. I can not use the visible property, using it the autolimits relim keeps considering the lines as being there. As consequence