Sets maximum x
(&mut self, xmax: f64)
| 588 | |
| 589 | /// Sets maximum x |
| 590 | pub fn set_xmax(&mut self, xmax: f64) -> &mut Self { |
| 591 | write!(&mut self.buffer, "plt.gca().set_xlim(right={})\n", xmax).unwrap(); |
| 592 | self |
| 593 | } |
| 594 | |
| 595 | /// Sets minimum y |
| 596 | pub fn set_ymin(&mut self, ymin: f64) -> &mut Self { |
no outgoing calls