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)
| 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 | """ |
no outgoing calls