MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / grid

Method grid

lib/mpl_toolkits/mplot3d/axes3d.py:2065–2079  ·  view source on GitHub ↗

Set / unset 3D grid. .. note:: Currently, this function does not behave the same as `.axes.Axes.grid`, but it is intended to eventually support that behavior.

(self, visible=True, **kwargs)

Source from the content-addressed store, hash-verified

2063 set_frame_on = None
2064
2065 def grid(self, visible=True, **kwargs):
2066 """
2067 Set / unset 3D grid.
2068
2069 .. note::
2070
2071 Currently, this function does not behave the same as
2072 `.axes.Axes.grid`, but it is intended to eventually support that
2073 behavior.
2074 """
2075 # TODO: Operate on each axes separately
2076 if len(kwargs):
2077 visible = True
2078 self._draw_grid = visible
2079 self.stale = True
2080
2081 def tick_params(self, axis='both', **kwargs):
2082 """

Callers 4

clearMethod · 0.95
test_grid_offFunction · 0.45
test_mixedsubplotsFunction · 0.45
test_axes3d_isometricFunction · 0.45

Calls

no outgoing calls

Tested by 3

test_grid_offFunction · 0.36
test_mixedsubplotsFunction · 0.36
test_axes3d_isometricFunction · 0.36