Struct Points

Source
pub struct Points { /* private fields */ }
Expand description

A set of points.

Implementations§

Source§

impl Points

Source

pub fn new(series: impl Into<PlotPoints>) -> Points

Source

pub fn shape(self, shape: MarkerShape) -> Points

Set the shape of the markers.

Source

pub fn highlight(self, highlight: bool) -> Points

Highlight these points in the plot by scaling up their markers.

Source

pub fn color(self, color: impl Into<Color32>) -> Points

Set the marker’s color.

Source

pub fn filled(self, filled: bool) -> Points

Whether to fill the marker.

Source

pub fn stems(self, y_reference: impl Into<f32>) -> Points

Whether to add stems between the markers and a horizontal reference line.

Source

pub fn radius(self, radius: impl Into<f32>) -> Points

Set the maximum extent of the marker around its position, in ui points.

Source

pub fn name(self, name: impl ToString) -> Points

Name of this set of points.

This name will show up in the plot legend, if legends are turned on.

Multiple plot items may share the same name, in which case they will also share an entry in the legend.

Source

pub fn id(self, id: Id) -> Points

Set the points’ id which is used to identify them in the plot’s response.

Trait Implementations§

Source§

impl PlotItem for Points

Source§

fn shapes(&self, _ui: &Ui, transform: &PlotTransform, shapes: &mut Vec<Shape>)

Source§

fn initialize(&mut self, x_range: RangeInclusive<f64>)

For plot-items which are generated based on x values (plotting functions).
Source§

fn name(&self) -> &str

Source§

fn color(&self) -> Color32

Source§

fn highlight(&mut self)

Source§

fn highlighted(&self) -> bool

Source§

fn geometry(&self) -> PlotGeometry<'_>

Source§

fn bounds(&self) -> PlotBounds

Source§

fn id(&self) -> Option<Id>

Source§

fn find_closest( &self, point: Pos2, transform: &PlotTransform, ) -> Option<ClosestElem>

Source§

fn on_hover( &self, elem: ClosestElem, shapes: &mut Vec<Shape>, cursors: &mut Vec<Cursor>, plot: &PlotConfig<'_>, label_formatter: &Option<Box<dyn Fn(&str, &PlotPoint) -> String>>, )

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<S> FromSample<S> for S

Source§

fn from_sample_(s: S) -> S

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

Source§

fn into_sample(self) -> T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

Source§

fn to_sample_(self) -> U

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> Any for T
where T: Any,

Source§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,