Sets the vertical gap between subplots
(&mut self, value: f64)
| 469 | |
| 470 | /// Sets the vertical gap between subplots |
| 471 | pub fn set_vertical_gap(&mut self, value: f64) -> &mut Self { |
| 472 | write!(&mut self.buffer, "plt.subplots_adjust(hspace={})\n", value).unwrap(); |
| 473 | self |
| 474 | } |
| 475 | |
| 476 | /// Sets the horizontal and vertical gap between subplots |
| 477 | pub fn set_gaps(&mut self, horizontal: f64, vertical: f64) -> &mut Self { |
no outgoing calls