Sets the direction of the axis ticks. # Argument `direction` - A `TickDirection` enum value representing the direction of the ticks.
(mut self, direction: TickDirection)
| 196 | /// |
| 197 | /// * `direction` - A `TickDirection` enum value representing the direction of the ticks. |
| 198 | pub fn tick_direction(mut self, direction: TickDirection) -> Self { |
| 199 | self.tick_direction = Some(direction); |
| 200 | self |
| 201 | } |
| 202 | |
| 203 | /// Sets the length of the axis ticks. |
| 204 | /// |
no outgoing calls
no test coverage detected