[][src]Struct plotlib::view::CategoricalView

pub struct CategoricalView { /* fields omitted */ }

A view with categorical entries along the x-axis and continuous values along the y-axis

Methods

impl CategoricalView[src]

pub fn new() -> CategoricalView[src]

Create an empty view

pub fn add<R: CategoricalRepresentation + 'static>(self, repr: R) -> Self[src]

Add a representation to the view

pub fn x_ticks(self, ticks: &[String]) -> Self[src]

Set the x range for the view

pub fn y_range(self, min: f64, max: f64) -> Self[src]

Set the y range for the view

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

Set the label for the x-axis

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

Set the label for the y-axis

Trait Implementations

impl Default for CategoricalView[src]

impl View for CategoricalView[src]

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.