Add a [`Series`] to the plot.
(mut self, series: Series)
| 311 | { |
| 312 | self.style = Some(Arc::new(style)); |
| 313 | self |
| 314 | } |
| 315 | |
| 316 | /// Add a [`Series`] to the plot. |
| 317 | pub fn add_series(mut self, series: Series) -> Self { |
| 318 | self.series.push(series); |
| 319 | self |