MCPcopy Create free account
hub / github.com/alceal/plotlars / tick_values

Method tick_values

crates/plotlars-core/src/components/axis.rs:178–181  ·  view source on GitHub ↗

Sets the tick values for the axis. # Argument `values` - A vector of `f64` values representing the tick values.

(mut self, values: Vec<f64>)

Source from the content-addressed store, hash-verified

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 ///

Callers 2

mainFunction · 0.45
set_axis_formatFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected