Trait textplots::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§
sourcefn x_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>
fn x_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>
Specifies the style of x-axis.
sourcefn y_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>
fn y_axis_style(&'a mut self, style: LineStyle) -> &'a mut Chart<'a>
Specifies the style of y-axis.