[][src]Struct plotlib::view::ContinuousView

pub struct ContinuousView<'a> { /* fields omitted */ }

Standard 1-dimensional view with a continuous x-axis

Methods

impl<'a> ContinuousView<'a>[src]

pub fn new() -> ContinuousView<'a>[src]

Create an empty view

pub fn add(self, repr: &'a dyn ContinuousRepresentation) -> Self[src]

Add a representation to the view

pub fn x_range(self, min: f64, max: f64) -> 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<'a> View for ContinuousView<'a>[src]

fn to_svg(&self, face_width: f64, face_height: f64) -> Result<Group, Error>[src]

Create an SVG rendering of the view

fn to_text(&self, face_width: u32, face_height: u32) -> Result<String, Error>[src]

Create a text rendering of the view

impl<'a> Default for ContinuousView<'a>[src]

Auto Trait Implementations

impl<'a> !Send for ContinuousView<'a>

impl<'a> !Sync for ContinuousView<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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