Sets the horizontal gap between subplots
(&mut self, value: f64)
| 463 | |
| 464 | /// Sets the horizontal gap between subplots |
| 465 | pub fn set_horizontal_gap(&mut self, value: f64) -> &mut Self { |
| 466 | write!(&mut self.buffer, "plt.subplots_adjust(wspace={})\n", value).unwrap(); |
| 467 | self |
| 468 | } |
| 469 | |
| 470 | /// Sets the vertical gap between subplots |
| 471 | pub fn set_vertical_gap(&mut self, value: f64) -> &mut Self { |
no outgoing calls