Line styling options for series lines. Defines how individual lines are rendered.
| 28 | /// |
| 29 | /// Defines how individual lines are rendered. |
| 30 | pub struct LineStyle { |
| 31 | /// Width of the line in pixels or world units. |
| 32 | pub width: Size, |
| 33 | /// Shape of the line. |
| 34 | pub line_type: LineType, |
| 35 | } |
| 36 | |
| 37 | impl Default for LineStyle { |
| 38 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected