pub struct Ternary<'a> { /* private fields */ }
Implementations§
Source§impl<'a> Ternary<'a>
impl<'a> Ternary<'a>
pub fn domain(&mut self) -> &mut Domain<'a>
Sourcepub fn bgcolor(&mut self, bgcolor: &'a str) -> &mut Self
pub fn bgcolor(&mut self, bgcolor: &'a str) -> &mut Self
Set the background color of the subplot
default: #fff
Sourcepub fn sum(&mut self, sum: f64) -> &mut Self
pub fn sum(&mut self, sum: f64) -> &mut Self
The number each triplet should sum to, and the maximum range of each axis
default: 1
pub fn aaxis(&mut self) -> &mut Aaxis<'a>
pub fn baxis(&mut self) -> &mut Baxis<'a>
pub fn caxis(&mut self) -> &mut Caxis<'a>
Sourcepub fn uirevision(&mut self, uirevision: Any) -> &mut Self
pub fn uirevision(&mut self, uirevision: Any) -> &mut Self
Controls persistence of user-driven changes in axis min
and title
, if not overridden in the individual axes. Defaults to layout.uirevision
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Ternary<'a>
impl<'a> RefUnwindSafe for Ternary<'a>
impl<'a> Send for Ternary<'a>
impl<'a> Sync for Ternary<'a>
impl<'a> Unpin for Ternary<'a>
impl<'a> UnwindSafe for Ternary<'a>
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