pub struct RadiusAxis { /* private fields */ }
Expand description
Radius axis in polar coordinate.
Implementations§
Source§impl RadiusAxis
impl RadiusAxis
pub fn new() -> Self
pub fn id<S: Into<String>>(self, id: S) -> Self
pub fn polar_index<F: Into<i64>>(self, polar_index: F) -> Self
pub fn type_<T: Into<AxisType>>(self, type_: T) -> Self
pub fn name<S: Into<String>>(self, name: S) -> Self
pub fn name_location<L: Into<NameLocation>>(self, name_location: L) -> Self
pub fn name_text_style<T: Into<TextStyle>>(self, name_text_style: T) -> Self
pub fn name_gap<F: Into<i64>>(self, name_gap: F) -> Self
pub fn name_rotation<F: Into<i64>>(self, name_rotation: F) -> Self
pub fn inverse(self, inverse: bool) -> Self
pub fn boundary_gap<B: Into<BoundaryGap>>(self, boundary_gap: B) -> Self
pub fn min<F: Into<i64>>(self, min: F) -> Self
pub fn max<F: Into<i64>>(self, max: F) -> Self
pub fn scale(self, scale: bool) -> Self
pub fn split_number<F: Into<i64>>(self, split_number: F) -> Self
pub fn min_interval<F: Into<i64>>(self, min_interval: F) -> Self
pub fn max_interval<F: Into<i64>>(self, max_interval: F) -> Self
pub fn interval<F: Into<i64>>(self, interval: F) -> Self
pub fn log_base<F: Into<i64>>(self, log_base: F) -> Self
pub fn axis_label<A: Into<AxisLabel>>(self, axis_label: A) -> Self
pub fn axis_line<A: Into<AxisLine>>(self, axis_line: A) -> Self
pub fn data<S: Into<String>>(self, data: Vec<S>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RadiusAxis
impl RefUnwindSafe for RadiusAxis
impl Send for RadiusAxis
impl Sync for RadiusAxis
impl Unpin for RadiusAxis
impl UnwindSafe for RadiusAxis
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