pub struct ColorBar { /* private fields */ }
Implementations§
Source§impl ColorBar
impl ColorBar
pub fn new() -> ColorBar
pub fn thickness_mode(self, thickness_mode: ThicknessMode) -> ColorBar
pub fn thickness(self, thickness: usize) -> ColorBar
pub fn len_mode(self, len_mode: ThicknessMode) -> ColorBar
pub fn len(self, len: usize) -> ColorBar
pub fn x(self, x: f64) -> ColorBar
pub fn x_anchor(self, x_anchor: Anchor) -> ColorBar
pub fn x_pad(self, x_pad: f64) -> ColorBar
pub fn y(self, y: f64) -> ColorBar
pub fn y_anchor(self, y_anchor: Anchor) -> ColorBar
pub fn y_pad(self, y_pad: f64) -> ColorBar
pub fn outline_color<C: Color>(self, outline_color: C) -> ColorBar
pub fn outline_width(self, outline_width: usize) -> ColorBar
pub fn border_color<C: Color>(self, border_color: C) -> ColorBar
pub fn border_width(self, border_width: usize) -> ColorBar
pub fn background_color<C: Color>(self, background_color: C) -> ColorBar
pub fn tick_mode(self, tick_mode: TickMode) -> ColorBar
pub fn n_ticks(self, n_ticks: usize) -> ColorBar
pub fn tick0(self, tick0: f64) -> ColorBar
pub fn dtick(self, dtick: f64) -> ColorBar
pub fn tick_vals(self, tick_vals: Vec<f64>) -> ColorBar
pub fn tick_text(self, tick_text: Vec<String>) -> ColorBar
pub fn ticks(self, ticks: &str) -> ColorBar
pub fn tick_len(self, tick_len: usize) -> ColorBar
pub fn tick_width(self, tick_width: usize) -> ColorBar
pub fn tick_color<C: Color>(self, tick_color: C) -> ColorBar
pub fn show_tick_labels(self, show_tick_labels: bool) -> ColorBar
pub fn tick_font(self, tick_font: Font) -> ColorBar
pub fn tick_angle(self, tick_angle: f64) -> ColorBar
pub fn tick_format(self, tick_format: &str) -> ColorBar
pub fn tick_format_stops( self, tick_format_stops: Vec<TickFormatStop>, ) -> ColorBar
pub fn tick_prefix(self, tick_prefix: &str) -> ColorBar
pub fn show_tick_prefix(self, show_tick_prefix: &str) -> ColorBar
pub fn tick_suffix(self, tick_suffix: &str) -> ColorBar
pub fn show_tick_suffix(self, show_tick_suffix: &str) -> ColorBar
pub fn separate_thousands(self, separate_thousands: bool) -> ColorBar
pub fn exponent_format(self, exponent_format: ExponentFormat) -> ColorBar
pub fn show_exponent(self, show_exponent: &str) -> ColorBar
pub fn title(self, title: Title) -> ColorBar
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ColorBar
impl RefUnwindSafe for ColorBar
impl Send for ColorBar
impl Sync for ColorBar
impl Unpin for ColorBar
impl UnwindSafe for ColorBar
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