(mut self, width: f32)
| 243 | /// height. |
| 244 | #[inline] |
| 245 | pub fn width(mut self, width: f32) -> Self { |
| 246 | self.min_size.x = width; |
| 247 | self.width = Some(width); |
| 248 | self |
| 249 | } |
| 250 | |
| 251 | /// Height of plot. By default a plot will fill the ui it is in. |
| 252 | /// If you set [`Self::view_aspect`], the height can be calculated from the |
no outgoing calls
no test coverage detected