Sets minimum y
(&mut self, ymin: f64)
| 594 | |
| 595 | /// Sets minimum y |
| 596 | pub fn set_ymin(&mut self, ymin: f64) -> &mut Self { |
| 597 | write!(&mut self.buffer, "plt.gca().set_ylim(bottom={})\n", ymin).unwrap(); |
| 598 | self |
| 599 | } |
| 600 | |
| 601 | /// Sets maximum y |
| 602 | pub fn set_ymax(&mut self, ymax: f64) -> &mut Self { |
no outgoing calls