Struct rustplotlib::Axes2D [] [src]

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

Represents an instance of matplotlib.axes.Axes.

Methods

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

create an empty axes.

This method is the shortcut of Default::default().

add a plot data.

set the label text of x axis.

set the label text of y axis.

set whether the grid is shown or not.

set the location of legend in the axes.

if the value of loc is empty, the legend is hidden.

set the range of x axis.

set the range of y axis.

Trait Implementations

impl<'a> Debug for Axes2D<'a>
[src]

Formats the value using the given formatter.

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

Returns the "default value" for a type. Read more