Marker styling options for series points. Defines how individual data points are rendered.
| 153 | /// |
| 154 | /// Defines how individual data points are rendered. |
| 155 | pub struct MarkerStyle { |
| 156 | /// Size of the marker in pixels or world units. |
| 157 | pub size: Size, |
| 158 | /// Shape of the marker. |
| 159 | pub marker_type: MarkerType, |
| 160 | } |
| 161 | |
| 162 | impl Default for MarkerStyle { |
| 163 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected