Select which rendering path the plot should use.
(mut self, strategy: PlotRenderStrategy)
| 154 | |
| 155 | /// Select which rendering path the plot should use. |
| 156 | pub fn with_render_strategy(mut self, strategy: PlotRenderStrategy) -> Self { |
| 157 | self.render_strategy = Some(strategy); |
| 158 | self |
| 159 | } |
| 160 | |
| 161 | /// Disable the in-canvas controls/help UI (`?` button + panel). |
| 162 | /// |