From: <jd...@us...> - 2009-07-31 13:15:29
|
Revision: 7313 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7313&view=rev Author: jdh2358 Date: 2009-07-31 13:15:16 +0000 (Fri, 31 Jul 2009) Log Message: ----------- make rgrids return grid, not tick, lines Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/projections/polar.py trunk/matplotlib/lib/matplotlib/pyplot.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2009-07-31 05:22:37 UTC (rev 7312) +++ trunk/matplotlib/CHANGELOG 2009-07-31 13:15:16 UTC (rev 7313) @@ -4421,4 +4421,3 @@ 2003-11-21 - make a dash-dot dict for the GC 2003-12-15 - fix install path bug -t Modified: trunk/matplotlib/lib/matplotlib/projections/polar.py =================================================================== --- trunk/matplotlib/lib/matplotlib/projections/polar.py 2009-07-31 05:22:37 UTC (rev 7312) +++ trunk/matplotlib/lib/matplotlib/projections/polar.py 2009-07-31 13:15:16 UTC (rev 7313) @@ -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 Modified: trunk/matplotlib/lib/matplotlib/pyplot.py =================================================================== --- trunk/matplotlib/lib/matplotlib/pyplot.py 2009-07-31 05:22:37 UTC (rev 7312) +++ trunk/matplotlib/lib/matplotlib/pyplot.py 2009-07-31 13:15:16 UTC (rev 7313) @@ -1102,7 +1102,7 @@ if not isinstance(ax, PolarAxes): raise RuntimeError('rgrids only defined for polar axes') if len(args)==0: - lines = ax.yaxis.get_ticklines() + lines = ax.yaxis.gridlines() labels = ax.yaxis.get_ticklabels() else: lines, labels = ax.set_rgrids(*args, **kwargs) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |