Set or change the line width for the series.
(mut self, width: impl Into<Size>)
| 460 | |
| 461 | /// Set or change the line width for the series. |
| 462 | pub fn line_width(mut self, width: impl Into<Size>) -> Self { |
| 463 | let width = width.into(); |
| 464 | self.line_style = Some(self.line_style.unwrap_or_default().with_width(width)); |
| 465 | self |
| 466 | } |
| 467 | |
| 468 | /// Set or change the line width for the series in world units. |
| 469 | pub fn line_width_world(mut self, width: f64) -> Self { |
nothing calls this directly
no test coverage detected