Sets the tick values for the axis. # Argument `values` - A vector of `f64` values representing the tick values.
(mut self, values: Vec<f64>)
| 176 | /// |
| 177 | /// * `values` - A vector of `f64` values representing the tick values. |
| 178 | pub fn tick_values(mut self, values: Vec<f64>) -> Self { |
| 179 | self.tick_values = Some(values); |
| 180 | self |
| 181 | } |
| 182 | |
| 183 | /// Sets the tick labels for the axis. |
| 184 | /// |
no outgoing calls
no test coverage detected