Add a vertical reference line to the plot.
(mut self, vline: VLine)
| 317 | pub fn add_series(mut self, series: Series) -> Self { |
| 318 | self.series.push(series); |
| 319 | self |
| 320 | } |
| 321 | |
| 322 | /// Add a vertical reference line to the plot. |
| 323 | pub fn add_vline(mut self, vline: VLine) -> Self { |
| 324 | self.vlines.push(vline); |
| 325 | self |