pub struct Points { /* private fields */ }Expand description
A set of points.
Implementations§
Source§impl Points
impl Points
pub fn new(series: impl Into<PlotPoints>) -> Self
Sourcepub fn shape(self, shape: MarkerShape) -> Self
pub fn shape(self, shape: MarkerShape) -> Self
Set the shape of the markers.
Sourcepub fn highlight(self, highlight: bool) -> Self
pub fn highlight(self, highlight: bool) -> Self
Highlight these points in the plot by scaling up their markers.
Sourcepub fn allow_hover(self, hovering: bool) -> Self
pub fn allow_hover(self, hovering: bool) -> Self
Allowed hovering this item in the plot. Default: true.
Sourcepub fn stems(self, y_reference: impl Into<f32>) -> Self
pub fn stems(self, y_reference: impl Into<f32>) -> Self
Whether to add stems between the markers and a horizontal reference line.
Sourcepub fn radius(self, radius: impl Into<f32>) -> Self
pub fn radius(self, radius: impl Into<f32>) -> Self
Set the maximum extent of the marker around its position, in ui points.
Trait Implementations§
Source§impl PlotItem for Points
impl PlotItem for Points
fn shapes(&self, _ui: &Ui, transform: &PlotTransform, shapes: &mut Vec<Shape>)
Source§fn initialize(&mut self, x_range: RangeInclusive<f64>)
fn initialize(&mut self, x_range: RangeInclusive<f64>)
For plot-items which are generated based on x values (plotting functions).
fn name(&self) -> &str
fn color(&self) -> Color32
fn highlight(&mut self)
fn highlighted(&self) -> bool
Source§fn allow_hover(&self) -> bool
fn allow_hover(&self) -> bool
Can the user hover this item?
fn geometry(&self) -> PlotGeometry<'_>
fn bounds(&self) -> PlotBounds
fn id(&self) -> Option<Id>
fn find_closest( &self, point: Pos2, transform: &PlotTransform, ) -> Option<ClosestElem>
fn on_hover( &self, elem: ClosestElem, shapes: &mut Vec<Shape>, cursors: &mut Vec<Cursor>, plot: &PlotConfig<'_>, label_formatter: &LabelFormatter<'_>, )
Auto Trait Implementations§
impl Freeze for Points
impl !RefUnwindSafe for Points
impl !Send for Points
impl !Sync for Points
impl Unpin for Points
impl !UnwindSafe for Points
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more