Sets an option to hide the ticks along the y axis
(&mut self)
| 516 | |
| 517 | /// Sets an option to hide the ticks along the y axis |
| 518 | pub fn set_hide_yticks(&mut self) -> &mut Self { |
| 519 | write!(&mut self.buffer, "plt.gca().set_yticklabels([])\n").unwrap(); |
| 520 | self |
| 521 | } |
| 522 | |
| 523 | /// Sets an option to hide the ticks along the z axis |
| 524 | pub fn set_hide_zticks(&mut self) -> &mut Self { |
no outgoing calls