pub trait AxisBuilder<'a> {
    // Required methods
    fn x_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>;
    fn y_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>;
}
Expand description

Provides a builder interface for styling axis.

Required Methods§

source

fn x_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>

Specifies the style of x-axis.

source

fn y_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>

Specifies the style of y-axis.

Implementors§

source§

impl<'a> AxisBuilder<'a> for Chart<'a>