[][src]Trait plotters::coord::IntoPartialAxis

pub trait IntoPartialAxis: AsRangedCoord {
    fn partial_axis(
        self,
        axis_range: Range<<Self::CoordDescType as Ranged>::ValueType>
    ) -> PartialAxis<Self::CoordDescType> { ... } }

The trait for the types that can be converted into a partial axis

Provided methods

fn partial_axis(
    self,
    axis_range: Range<<Self::CoordDescType as Ranged>::ValueType>
) -> PartialAxis<Self::CoordDescType>

Make the partial axis

  • axis_range: The range of the axis to be displayed
  • returns: The converted range specification
Loading content...

Implementors

impl<R: AsRangedCoord> IntoPartialAxis for R[src]

Loading content...