Sorry for reposting, but the original may have been overlooked since  
it was buried deep in a matplotlib-users thread.

Currently, `pyplot.rgrids` is returning tick lines instead of grid  
lines. My guess is that this is a typo, but there may be a compelling  
reason to return the tick lines. If it is a typo, here's a patch:


Index: lib/matplotlib/projections/polar.py
===================================================================
--- lib/matplotlib/projections/polar.py (revision 7300)
+++ lib/matplotlib/projections/polar.py (working copy)
@@ -397,7 +397,7 @@
         self._r_label2_position.clear().translate(angle, -self._rpad  
* rmax)
         for t in self.yaxis.get_ticklabels():
             t.update(kwargs)
-        return self.yaxis.get_ticklines(), self.yaxis.get_ticklabels()
+        return self.yaxis.get_gridlines(), self.yaxis.get_ticklabels()

     set_rgrids.__doc__ = cbook.dedent(set_rgrids.__doc__) % kwdocd

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to