(mut self, data_aspect: f32)
| 208 | /// By default the plot window's aspect ratio is used. |
| 209 | #[inline] |
| 210 | pub fn data_aspect(mut self, data_aspect: f32) -> Self { |
| 211 | self.data_aspect = Some(data_aspect); |
| 212 | self |
| 213 | } |
| 214 | |
| 215 | /// width / height ratio of the plot region. |
| 216 | /// By default no fixed aspect ratio is set (and width/height will fill the |