(mut self, label: impl Into<WidgetText>)
| 121 | /// The default is 'x' for x-axes and 'y' for y-axes. |
| 122 | #[inline] |
| 123 | pub fn label(mut self, label: impl Into<WidgetText>) -> Self { |
| 124 | self.label = label.into(); |
| 125 | self |
| 126 | } |
| 127 | |
| 128 | /// Specify minimum thickness of the axis |
| 129 | #[inline] |
no outgoing calls
no test coverage detected