Set a custom formatter for the x-axis tick labels. The formatter receives a GridMark (containing the tick value and step size) and the current visible range on the x-axis.
(&mut self, formatter: TickFormatter)
| 855 | pub fn get_controls(&self) -> &PlotControls { |
| 856 | &self.controls |
| 857 | } |
| 858 | |
| 859 | /// Get the mutable full interaction controls behavior for the plot. |
| 860 | pub fn get_controls_mut(&mut self) -> &mut PlotControls { |
| 861 | &mut self.controls |
| 862 | } |