Sets the tick labels for the axis. # Argument `labels` - A vector of values that can be converted into `String`, representing the tick labels.
(mut self, labels: Vec<impl Into<String>>)
| 186 | /// |
| 187 | /// * `labels` - A vector of values that can be converted into `String`, representing the tick labels. |
| 188 | pub fn tick_labels(mut self, labels: Vec<impl Into<String>>) -> Self { |
| 189 | self.tick_labels = Some(labels.into_iter().map(|x| x.into()).collect()); |
| 190 | self |
| 191 | } |
| 192 | |
| 193 | /// Sets the direction of the axis ticks. |
| 194 | /// |
no outgoing calls