Set the z-axis scale. Parameters ---------- value : {"linear", "log", "symlog", "logit", ...} The axis scale type to apply. See `~.scale.ScaleBase` for the list of available scales. **kwargs Keyword arguments are forwarde
(self, value, **kwargs)
| 1189 | self._set_axis_scale(self.yaxis, value, **kwargs) |
| 1190 | |
| 1191 | def set_zscale(self, value, **kwargs): |
| 1192 | """ |
| 1193 | Set the z-axis scale. |
| 1194 | |
| 1195 | Parameters |
| 1196 | ---------- |
| 1197 | value : {"linear", "log", "symlog", "logit", ...} |
| 1198 | The axis scale type to apply. See `~.scale.ScaleBase` for |
| 1199 | the list of available scales. |
| 1200 | |
| 1201 | **kwargs |
| 1202 | Keyword arguments are forwarded to the scale class. |
| 1203 | For example, ``base=2`` can be passed when using a log scale. |
| 1204 | """ |
| 1205 | self._set_axis_scale(self.zaxis, value, **kwargs) |
| 1206 | |
| 1207 | twinx = _api.unsupported_method() |
| 1208 | twiny = _api.unsupported_method() |