Disable the legend. By default, when plot contains at least one labeled series, the legend is enabled.
(mut self)
| 172 | /// |
| 173 | /// By default, when plot contains at least one labeled series, the legend is enabled. |
| 174 | pub fn disable_legend(mut self) -> Self { |
| 175 | self.disable_legend = true; |
| 176 | self |
| 177 | } |
| 178 | |
| 179 | /// Set the full interaction controls behavior for the plot. |
| 180 | pub fn with_controls(mut self, controls: PlotControls) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected