pub struct RadarAxisName { /* private fields */ }
Expand description
Name options for radar indicators.
Implementations§
Source§impl RadarAxisName
impl RadarAxisName
pub fn new() -> Self
pub fn show(self, show: bool) -> Self
pub fn formatter<C: Into<Formatter>>(self, formatter: C) -> Self
pub fn color<C: Into<Color>>(self, color: C) -> Self
pub fn font_style<S: Into<String>>(self, font_style: S) -> Self
pub fn font_weight<S: Into<String>>(self, font_weight: S) -> Self
pub fn font_family<S: Into<String>>(self, font_family: S) -> Self
pub fn font_size<F: Into<i64>>(self, font_size: F) -> Self
pub fn line_height<F: Into<i64>>(self, line_height: F) -> Self
pub fn background_color<C: Into<Color>>(self, background_color: C) -> Self
pub fn border_color<C: Into<Color>>(self, border_color: C) -> Self
pub fn border_width<F: Into<i64>>(self, border_width: F) -> Self
pub fn border_type<S: Into<String>>(self, border_type: S) -> Self
pub fn border_dash_offset<F: Into<i64>>(self, border_dash_offset: F) -> Self
pub fn border_radius<C: Into<CompositeValue>>(self, border_radius: C) -> Self
pub fn padding<C: Into<Padding>>(self, padding: C) -> Self
pub fn shadow_color<C: Into<Color>>(self, shadow_color: C) -> Self
pub fn shadow_blur<F: Into<i64>>(self, shadow_blur: F) -> Self
pub fn shadow_offset_x<F: Into<i64>>(self, shadow_offset_x: F) -> Self
pub fn shadow_offset_y<F: Into<i64>>(self, shadow_offset_y: F) -> Self
pub fn width<C: Into<CompositeValue>>(self, width: C) -> Self
pub fn height<C: Into<CompositeValue>>(self, height: C) -> Self
pub fn text_border_color<C: Into<Color>>(self, text_border_color: C) -> Self
pub fn text_border_width<F: Into<i64>>(self, text_border_width: F) -> Self
pub fn text_border_type<S: Into<String>>(self, text_border_type: S) -> Self
pub fn text_border_dash_offset<F: Into<i64>>( self, text_border_dash_offset: F, ) -> Self
pub fn text_shadow_color<C: Into<Color>>(self, text_shadow_color: C) -> Self
pub fn text_shadow_blur<F: Into<i64>>(self, text_shadow_blur: F) -> Self
pub fn text_shadow_offset_x<F: Into<i64>>(self, text_shadow_offset_x: F) -> Self
pub fn text_shadow_offset_y<F: Into<i64>>(self, text_shadow_offset_y: F) -> Self
pub fn overflow<S: Into<String>>(self, overflow: S) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RadarAxisName
impl RefUnwindSafe for RadarAxisName
impl Send for RadarAxisName
impl Sync for RadarAxisName
impl Unpin for RadarAxisName
impl UnwindSafe for RadarAxisName
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