Enables error indicators (one error value per bar) When used with [`set_horizontal(true)`](Self::set_horizontal), errors apply to the x-axis instead of the y-axis.
(&mut self, errors: &[f64])
| 269 | /// When used with [`set_horizontal(true)`](Self::set_horizontal), errors |
| 270 | /// apply to the x-axis instead of the y-axis. |
| 271 | pub fn set_errors(&mut self, errors: &[f64]) -> &mut Self { |
| 272 | self.errors = errors.to_vec(); |
| 273 | self |
| 274 | } |
| 275 | |
| 276 | /// Sets extra matplotlib commands (comma separated) |
| 277 | /// |
no outgoing calls