Trait AxisBuilder

Source
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>