Sets an option to hide the ticks along the x axis
(&mut self)
| 510 | |
| 511 | /// Sets an option to hide the ticks along the x axis |
| 512 | pub fn set_hide_xticks(&mut self) -> &mut Self { |
| 513 | write!(&mut self.buffer, "plt.gca().set_xticklabels([])\n").unwrap(); |
| 514 | self |
| 515 | } |
| 516 | |
| 517 | /// Sets an option to hide the ticks along the y axis |
| 518 | pub fn set_hide_yticks(&mut self) -> &mut Self { |
no outgoing calls