Create a new series with circle markers.
(positions: Vec<[f64; 2]>, size: f32)
| 365 | |
| 366 | /// Create a new series with circle markers. |
| 367 | pub fn circles(positions: Vec<[f64; 2]>, size: f32) -> Self { |
| 368 | Self::markers_only(positions, MarkerStyle::circle(size)) |
| 369 | } |
| 370 | |
| 371 | /// Create a new series with square markers. |
| 372 | pub fn squares(positions: Vec<[f64; 2]>, size: f32) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected