Sets the position of the axis. # Argument `position` - A `f64` value representing the position of the axis.
(mut self, position: f64)
| 115 | /// |
| 116 | /// * `position` - A `f64` value representing the position of the axis. |
| 117 | pub fn axis_position(mut self, position: f64) -> Self { |
| 118 | self.axis_position = Some(position); |
| 119 | self |
| 120 | } |
| 121 | |
| 122 | /// Sets the type of the axis. |
| 123 | /// |