[][src]Struct plotters::ChartBuilder

pub struct ChartBuilder<'a, DB: DrawingBackend> { /* fields omitted */ }

The helper object to create a chart

Methods

impl<'a, DB: DrawingBackend> ChartBuilder<'a, DB>[src]

pub fn on(root: &'a DrawingArea<DB, Shift>) -> Self[src]

Create a chart builder on the given drawing area

pub fn set_margin(&mut self, size: u32) -> &mut Self[src]

pub fn set_x_label_size(&mut self, size: u32) -> &mut Self[src]

Set the size of X label

pub fn set_y_label_size(&mut self, size: u32) -> &mut Self[src]

Set the size of the Y label

pub fn caption<S: AsRef<str>>(
    &mut self,
    caption: S,
    style: TextStyle
) -> &mut Self
[src]

Set the caption of the chart

pub fn build_ranged<XR: Ranged, YR: Ranged, X: Into<XR>, Y: Into<YR>>(
    &mut self,
    x_spec: X,
    y_spec: Y
) -> ChartContext<DB, RangedCoord<XR, YR>>
[src]

Builder the chart

Auto Trait Implementations

impl<'a, DB> !Send for ChartBuilder<'a, DB>

impl<'a, DB> !Sync for ChartBuilder<'a, DB>

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> Any for T where
    T: 'static + ?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> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.