pub struct State<Id>where
Id: Clone,{ /* private fields */ }Expand description
Local state of the Chart.
Implementations§
Source§impl<Id> State<Id>where
Id: Clone,
impl<Id> State<Id>where
Id: Clone,
pub fn get_cursor_position(&self) -> Option<Point>
pub fn get_coords(&self) -> Option<Point>
Sourcepub fn get_offset(&self) -> Option<Point>
pub fn get_offset(&self) -> Option<Point>
Examples found in repository?
examples/items_drag.rs (line 192)
175 pub fn view(&self) -> Element<'_, Message> {
176 let palette = self.theme().palette();
177 container(
178 Chart::new()
179 .width(Length::Fill)
180 .height(Length::Fill)
181 .x_range(-0.5..=3.5)
182 .y_range(-0.5..=1.5)
183 .push_series(line_series(self.handles.iter()).color(palette.primary))
184 .push_series(
185 point_series(self.handles.iter())
186 .color(palette.danger)
187 .style_for_each(|_index, handle| handle.style.clone())
188 .with_id(ItemId::PointList),
189 )
190 .on_press(|state| {
191 let id = state.items().and_then(|l| l.first().map(|i| i.1));
192 Message::MouseDown(id, state.get_offset())
193 })
194 .on_move(|state| {
195 let id = state.items().and_then(|l| l.first().map(|i| i.1));
196 Message::OnMove(id, state.get_offset())
197 })
198 .on_release(|state| Message::MouseUp(state.get_offset())),
199 )
200 .into()
201 }More examples
examples/scroll.rs (line 164)
141 pub fn view(&self) -> Element<'_, Message> {
142 let palette = self.theme().palette();
143
144 let top = bound("Top").center_x(Length::Fill);
145 let bottom = bound("Bottom").center_x(Length::Fill);
146 let left = bound("Left").center_y(Length::Fill);
147 let right = bound("Right").center_y(Length::Fill);
148
149 let chart = Chart::<_, (), _>::new()
150 .width(Length::Fill)
151 .height(Length::Fill)
152 .x_range(self.x_range.clone())
153 .x_labels(Labels::default().format(&|v| format!("{v:.2}")))
154 .y_labels(Labels::default().format(&|v| format!("{v:.5}")))
155 .y_range(-2.0..=2.0)
156 .push_series(line_series(self.data.iter().copied()).color(palette.primary)) // .push_series(
157 .push_series(line_series(&self.data_1).color(palette.success))
158 .push_series(
159 point_series(self.data.iter().copied().map(|(x, y)| (x, y * 1.5)))
160 .x(&|item| item.0)
161 .y(&|item| item.1)
162 .color(palette.danger),
163 )
164 .on_press(|state| Message::MouseDown(state.get_offset()))
165 .on_release(|state| Message::MouseUp(state.get_offset()))
166 .on_move(|state| Message::OnMove(state.get_offset()));
167
168 column![top, row![left, chart, right], bottom].into()
169 }pub fn x_range(&self) -> Option<RangeInclusive<f32>>
pub fn scroll_delta(&self) -> Option<ScrollDelta>
Sourcepub fn items(&self) -> Option<&Vec<(Id, usize)>>
pub fn items(&self) -> Option<&Vec<(Id, usize)>>
Examples found in repository?
examples/items.rs (line 115)
95 pub fn view(&self) -> Element<'_, Message> {
96 let palette = self.theme().palette();
97 container(
98 Chart::new()
99 .width(Length::Fill)
100 .height(Length::Fill)
101 .x_range(-0.5..=3.5)
102 .y_range(-0.5..=1.5)
103 .push_series(line_series(&self.data).color(palette.text))
104 .push_series(
105 point_series(self.data.iter())
106 .color(palette.danger)
107 .style_for_each(|_index, item| point::Style {
108 color: Some(item.color),
109 border_color: Some(item.border_color),
110 border: item.border,
111 ..Default::default()
112 })
113 .with_id(ItemId::PointList),
114 )
115 .on_move(|state| Message::OnMove(state.items().cloned())),
116 )
117 .into()
118 }More examples
examples/items_drag.rs (line 191)
175 pub fn view(&self) -> Element<'_, Message> {
176 let palette = self.theme().palette();
177 container(
178 Chart::new()
179 .width(Length::Fill)
180 .height(Length::Fill)
181 .x_range(-0.5..=3.5)
182 .y_range(-0.5..=1.5)
183 .push_series(line_series(self.handles.iter()).color(palette.primary))
184 .push_series(
185 point_series(self.handles.iter())
186 .color(palette.danger)
187 .style_for_each(|_index, handle| handle.style.clone())
188 .with_id(ItemId::PointList),
189 )
190 .on_press(|state| {
191 let id = state.items().and_then(|l| l.first().map(|i| i.1));
192 Message::MouseDown(id, state.get_offset())
193 })
194 .on_move(|state| {
195 let id = state.items().and_then(|l| l.first().map(|i| i.1));
196 Message::OnMove(id, state.get_offset())
197 })
198 .on_release(|state| Message::MouseUp(state.get_offset())),
199 )
200 .into()
201 }Trait Implementations§
Auto Trait Implementations§
impl<Id> Freeze for State<Id>
impl<Id> RefUnwindSafe for State<Id>
impl<Id> Send for State<Id>
impl<Id> Sync for State<Id>
impl<Id> Unpin for State<Id>
impl<Id> UnsafeUnpin for State<Id>
impl<Id> UnwindSafe for State<Id>
Blanket Implementations§
Source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: Real + Zero + Arithmetics + Clone,
Swp: WhitePoint<T>,
Dwp: WhitePoint<T>,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: Real + Zero + Arithmetics + Clone,
Swp: WhitePoint<T>,
Dwp: WhitePoint<T>,
D: AdaptFrom<S, Swp, Dwp, T>,
Source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<T>,
Convert the source color to the destination color using the specified
method.
Source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default.
Source§impl<T, C> ArraysFrom<C> for Twhere
C: IntoArrays<T>,
impl<T, C> ArraysFrom<C> for Twhere
C: IntoArrays<T>,
Source§fn arrays_from(colors: C) -> T
fn arrays_from(colors: C) -> T
Cast a collection of colors into a collection of arrays.
Source§impl<T, C> ArraysInto<C> for Twhere
C: FromArrays<T>,
impl<T, C> ArraysInto<C> for Twhere
C: FromArrays<T>,
Source§fn arrays_into(self) -> C
fn arrays_into(self) -> C
Cast this collection of arrays into a collection of colors.
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
Source§impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for Uwhere
T: FromCam16Unclamped<WpParam, U>,
impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for Uwhere
T: FromCam16Unclamped<WpParam, U>,
Source§type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar
type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar
The number type that’s used in
parameters when converting.Source§fn cam16_into_unclamped(
self,
parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>,
) -> T
fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T
Converts
self into C, using the provided parameters.Source§impl<T, C> ComponentsFrom<C> for Twhere
C: IntoComponents<T>,
impl<T, C> ComponentsFrom<C> for Twhere
C: IntoComponents<T>,
Source§fn components_from(colors: C) -> T
fn components_from(colors: C) -> T
Cast a collection of colors into a collection of color components.
Source§impl<T, C> ComponentsInto<C> for T
impl<T, C> ComponentsInto<C> for T
Source§fn components_into(self) -> C
fn components_into(self) -> C
Cast this collection of color components into a collection of colors. Read more
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FromAngle<T> for T
impl<T> FromAngle<T> for T
Source§fn from_angle(angle: T) -> T
fn from_angle(angle: T) -> T
Performs a conversion from
angle.Source§impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
Source§fn from_stimulus(other: U) -> T
fn from_stimulus(other: U) -> T
Converts
other into Self, while performing the appropriate scaling,
rounding and clamping.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
Source§fn into_angle(self) -> U
fn into_angle(self) -> U
Performs a conversion into
T.Source§impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for Uwhere
T: Cam16FromUnclamped<WpParam, U>,
impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for Uwhere
T: Cam16FromUnclamped<WpParam, U>,
Source§type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar
type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar
The number type that’s used in
parameters when converting.Source§fn into_cam16_unclamped(
self,
parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>,
) -> T
fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T
Converts
self into C, using the provided parameters.Source§impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
Source§fn into_color(self) -> U
fn into_color(self) -> U
Convert into T with values clamped to the color defined bounds Read more
Source§impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
Source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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 moreSource§impl<T> IntoStimulus<T> for T
impl<T> IntoStimulus<T> for T
Source§fn into_stimulus(self) -> T
fn into_stimulus(self) -> T
Converts
self into T, while performing the appropriate scaling,
rounding and clamping.impl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSync for Twhere
T: Sync,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T, C> TryComponentsInto<C> for Twhere
C: TryFromComponents<T>,
impl<T, C> TryComponentsInto<C> for Twhere
C: TryFromComponents<T>,
Source§type Error = <C as TryFromComponents<T>>::Error
type Error = <C as TryFromComponents<T>>::Error
The error for when
try_into_colors fails to cast.Source§fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>
fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>
Try to cast this collection of color components into a collection of
colors. Read more
Source§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
Source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined
range, otherwise an
OutOfBounds error is returned which contains
the unclamped color. Read moreSource§impl<C, U> UintsFrom<C> for Uwhere
C: IntoUints<U>,
impl<C, U> UintsFrom<C> for Uwhere
C: IntoUints<U>,
Source§fn uints_from(colors: C) -> U
fn uints_from(colors: C) -> U
Cast a collection of colors into a collection of unsigned integers.
Source§impl<C, U> UintsInto<C> for Uwhere
C: FromUints<U>,
impl<C, U> UintsInto<C> for Uwhere
C: FromUints<U>,
Source§fn uints_into(self) -> C
fn uints_into(self) -> C
Cast this collection of unsigned integers into a collection of colors.