pub struct EffectScatter { /* private fields */ }
Implementations§
Source§impl EffectScatter
impl EffectScatter
pub fn new() -> Self
pub fn id<S: Into<String>>(self, id: S) -> Self
pub fn name<S: Into<String>>(self, name: S) -> Self
pub fn color_by<C: Into<ColorBy>>(self, color_by: C) -> Self
pub fn legend_hover_link(self, legend_hover_link: bool) -> Self
pub fn effect_type<E: Into<EffectType>>(self, effect_type: E) -> Self
pub fn show_effect_on<S: Into<ShowEffectOn>>(self, show_effect_on: S) -> Self
pub fn coordinate_system<C: Into<CoordinateSystem>>( self, coordinate_system: C, ) -> Self
pub fn x_axis_index<F: Into<i64>>(self, x_axis_index: F) -> Self
pub fn y_axis_index<F: Into<i64>>(self, y_axis_index: F) -> Self
pub fn polar_index<F: Into<i64>>(self, polar_index: F) -> Self
pub fn geo_index<F: Into<i64>>(self, geo_index: F) -> Self
pub fn calendar_index<F: Into<i64>>(self, calendar_index: F) -> Self
pub fn symbol<S: Into<Symbol>>(self, symbol: S) -> Self
pub fn symbol_size<F: Into<i64>>(self, symbol_size: F) -> Self
pub fn symbol_rotate<F: Into<i64>>(self, symbol_rotate: F) -> Self
pub fn symbol_keep_aspect(self, symbol_keep_aspect: bool) -> Self
pub fn symbol_offset<S: Into<String>>(self, symbol_offset: (S, S)) -> Self
pub fn label<L: Into<Label>>(self, label: L) -> Self
pub fn label_line<L: Into<LabelLine>>(self, label_line: L) -> Self
pub fn label_layout<L: Into<LabelLayout>>(self, label_layout: L) -> Self
pub fn item_style<I: Into<ItemStyle>>(self, item_style: I) -> Self
pub fn emphasis<E: Into<Emphasis>>(self, emphasis: E) -> Self
pub fn data<D: Into<DataPoint>>(self, data: Vec<D>) -> Self
Trait Implementations§
Source§impl From<EffectScatter> for Series
impl From<EffectScatter> for Series
Source§fn from(series: EffectScatter) -> Self
fn from(series: EffectScatter) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EffectScatter
impl RefUnwindSafe for EffectScatter
impl Send for EffectScatter
impl Sync for EffectScatter
impl Unpin for EffectScatter
impl UnwindSafe for EffectScatter
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
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 more