[][src]Struct plotlib::repr::BarChart

pub struct BarChart { /* fields omitted */ }

Methods

impl BarChart[src]

pub fn new(v: f64) -> Self[src]

pub fn style(self, style: &BoxStyle) -> Self[src]

pub fn get_style(&self) -> &BoxStyle[src]

pub fn label<T>(self, label: T) -> Self where
    T: Into<String>, 
[src]

pub fn get_label(&self) -> &String[src]

Trait Implementations

impl CategoricalRepresentation for BarChart[src]

fn range(&self) -> (f64, f64)[src]

The maximum range. Used for auto-scaling axis

fn ticks(&self) -> Vec<String>[src]

The ticks that this representation covers. Used to collect all ticks for display

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.