[][src]Struct plotters::chart::ChartBuilder

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

The helper object to create a chart context, which is used for the high-level plotting

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

  • root: The root drawing area
  • Returns: The chart builder object

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

Set the margin size of the chart

  • size: The size of the chart margin. If the chart builder is titled, we don't apply any margin

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

Set the size of X label area

  • size: The height of the x label area, if x is 0, the chart doesn't have the X label area

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

Set the size of the Y label area

  • size: The width of the Y label area. If size is 0, the chart doesn't have Y label area

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

Set the caption of the chart

  • caption: The caption of the chart
  • style: The text style
  • Note: If the caption is set, the margin option will be ignored

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 with a ranged coordinate system. The function will returns a chart context, where data series can be rendered on.

  • x_spec: The specification of X axis
  • y_spec: The specification of Y axis
  • Returns: A chart context

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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, 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> Borrow for T where
    T: ?Sized
[src]

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

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

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.