(mut self)
| 81 | /// Argument axis will be Y and values will be on the X axis. |
| 82 | #[inline] |
| 83 | pub fn horizontal(mut self) -> Self { |
| 84 | for box_elem in &mut self.boxes { |
| 85 | box_elem.orientation = Orientation::Horizontal; |
| 86 | } |
| 87 | self |
| 88 | } |
| 89 | |
| 90 | /// Add a custom way to format an element. |
| 91 | /// Can be used to display a set number of decimals or custom labels. |
no outgoing calls
no test coverage detected