Enables drawing horizontal boxes instead of vertical When `true`, the boxplot is rotated 90° clockwise so categories appear on the y-axis.
(&mut self, flag: bool)
| 182 | /// When `true`, the boxplot is rotated 90° clockwise so categories |
| 183 | /// appear on the y-axis. |
| 184 | pub fn set_horizontal(&mut self, flag: bool) -> &mut Self { |
| 185 | self.horizontal = flag; |
| 186 | self |
| 187 | } |
| 188 | |
| 189 | /// Sets the position of the whiskers |
| 190 | /// |
no outgoing calls