Create a new PlotWidgetBuilder.
()
| 69 | impl PlotWidgetBuilder { |
| 70 | /// Create a new PlotWidgetBuilder. |
| 71 | pub fn new() -> Self { |
| 72 | Self::default() |
| 73 | } |
| 74 | |
| 75 | /// Set the x-axis label for the plot. |
| 76 | pub fn with_x_label(mut self, label: impl Into<String>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected