From: <lee...@us...> - 2009-06-25 05:17:11
|
Revision: 7241 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7241&view=rev Author: leejjoon Date: 2009-06-25 05:17:10 +0000 (Thu, 25 Jun 2009) Log Message: ----------- axes_grid: doc update Modified Paths: -------------- trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/index.rst trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/overview.rst trunk/matplotlib/examples/axes_grid/demo_floating_axis.py trunk/matplotlib/lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py Modified: trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/index.rst =================================================================== --- trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/index.rst 2009-06-25 04:57:48 UTC (rev 7240) +++ trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/index.rst 2009-06-25 05:17:10 UTC (rev 7241) @@ -11,3 +11,4 @@ overview.rst axes_divider.rst + axislines.rst Modified: trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/overview.rst =================================================================== --- trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/overview.rst 2009-06-25 04:57:48 UTC (rev 7240) +++ trunk/matplotlib/doc/mpl_toolkits/axes_grid/users/overview.rst 2009-06-25 05:17:10 UTC (rev 7241) @@ -388,3 +388,13 @@ .. plot:: mpl_toolkits/axes_grid/figures/inset_locator_demo2.py :include-source: + +Curvelinear Grid +================ + +You can draw a cuvelinear grid and ticks. Also a floating axis can be +created. See :ref:`axislines-manual` for more details. + +.. plot:: mpl_toolkits/axes_grid/figures/demo_floating_axis.py + + Modified: trunk/matplotlib/examples/axes_grid/demo_floating_axis.py =================================================================== --- trunk/matplotlib/examples/axes_grid/demo_floating_axis.py 2009-06-25 04:57:48 UTC (rev 7240) +++ trunk/matplotlib/examples/axes_grid/demo_floating_axis.py 2009-06-25 05:17:10 UTC (rev 7241) @@ -40,9 +40,6 @@ ax1 = SubplotHost(fig, 1, 1, 1, grid_helper=grid_helper) - # make ticklabels of right and top axis visible. - for axis in ax1.axis.values(): - axis.toggle(all=False) fig.add_subplot(ax1) Modified: trunk/matplotlib/lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py =================================================================== --- trunk/matplotlib/lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py 2009-06-25 04:57:48 UTC (rev 7240) +++ trunk/matplotlib/lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py 2009-06-25 05:17:10 UTC (rev 7241) @@ -315,10 +315,13 @@ def new_floating_axis(self, nth_coord, value, tick_direction="in", - label_direction="top", + label_direction=None, axes=None, ): + if label_direction is None: + label_direction = "top" + _helper = FloatingAxisArtistHelper(self, nth_coord, value, label_direction=label_direction, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |