pub struct Points { /* private fields */ }
Expand description
A set of points.
Implementations
sourceimpl Points
impl Points
pub fn new(series: impl Into<PlotPoints>) -> Points
sourcepub fn shape(self, shape: MarkerShape) -> Points
pub fn shape(self, shape: MarkerShape) -> Points
Set the shape of the markers.
sourcepub fn highlight(self, highlight: bool) -> Points
pub fn highlight(self, highlight: bool) -> Points
Highlight these points in the plot by scaling up their markers.
sourcepub fn stems(self, y_reference: impl Into<f32>) -> Points
pub fn stems(self, y_reference: impl Into<f32>) -> Points
Whether to add stems between the markers and a horizontal reference line.
Auto Trait Implementations
impl !RefUnwindSafe for Points
impl !Send for Points
impl !Sync for Points
impl Unpin for Points
impl !UnwindSafe for Points
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more