All,

I have just submitted the following two additions to the code:

1) Added ability to have X and Y Axis autoscale independently.  This is handled 
by the addition of the following methods to Axes:
   -- Axes.get_autoscalex_on() / Axes.set_autoscalex_on( bool )
   -- Axes.get_autoscaley_on() / Axes.set_autoscaley_on( bool )

   The original method of Axes.set_autoscale_on( bool ) will set the auto scale 
for the x and y axes to be the same (thus keeping
its functionality exactly the same).  The method Axes.get_autoscale_on() 
currently acts exactly as the original in that it returns
True is the x and y axes are both auto scaling (since the original behavior was 
that both axes had the same flag).  This can be
changed however so that it returns True if either axis has auto scaling enabled.

2) Fixed a bug where any user specified formatter, locator, of axis labels 
would get overwritten if anything tickled the unit
handling code after they were set.  In order to facilitate this I added the 
following methods to Axis:
   -- Axis.get_label_text() / Axis.get_label_text( str )

   Essentially user-specified explicit values will take precedence over any 
"default" or "smart" generated values.

--James Evans


------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to