pub struct AngleAxis { /* private fields */ }
Expand description
The angle axis in Polar Coordinate.
Implementations§
Source§impl AngleAxis
impl AngleAxis
pub fn new() -> Self
pub fn boundary_gap<B: Into<BoundaryGap>>(self, boundary_gap: B) -> 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 start_angle<F: Into<i64>>(self, start_angle: F) -> Self
pub fn clockwise(self, clockwise: bool) -> Self
pub fn type_<T: Into<AxisType>>(self, type_: T) -> Self
pub fn zlevel<F: Into<i64>>(self, zlevel: F) -> Self
pub fn z<F: Into<i64>>(self, z: F) -> 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 silent(self, silent: bool) -> Self
pub fn trigger_event(self, trigger_event: bool) -> Self
pub fn axis_line<A: Into<AxisLine>>(self, axis_line: A) -> Self
pub fn axis_tick<A: Into<AxisTick>>(self, axis_tick: A) -> Self
pub fn axis_pointer<A: Into<AxisPointer>>(self, axis_pointer: A) -> Self
pub fn minor_tick<M: Into<MinorTick>>(self, minor_tick: M) -> Self
pub fn axis_label<A: Into<AxisLabel>>(self, axis_label: A) -> Self
pub fn split_line<S: Into<SplitLine>>(self, split_line: S) -> Self
pub fn minor_split_line<M: Into<MinorSplitLine>>( self, minor_split_line: M, ) -> Self
pub fn split_area<S: Into<SplitArea>>(self, split_area: S) -> Self
pub fn data<S: Into<String>>(self, data: Vec<S>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AngleAxis
impl RefUnwindSafe for AngleAxis
impl Send for AngleAxis
impl Sync for AngleAxis
impl Unpin for AngleAxis
impl UnwindSafe for AngleAxis
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