Add a fill region between two shapes in the plot.
(mut self, fill: Fill)
| 323 | pub fn add_vline(mut self, vline: VLine) -> Self { |
| 324 | self.vlines.push(vline); |
| 325 | self |
| 326 | } |
| 327 | |
| 328 | /// Add a fill region between two shapes in the plot. |
| 329 | pub fn add_fill(mut self, fill: Fill) -> Self { |
| 330 | self.fills.push(fill); |
| 331 | self |