[][src]Struct plotters_unstable::coord::combinators::GroupBy

pub struct GroupBy<T: DiscreteRanged>(_, _);

Grouping the value in the coordinate specification.

This combinator doesn't change the coordinate mapping behavior. But it changes how the key point is generated, this coordinate specification will enforce that only the first value in each group can be emitted as the bold key points.

This is useful, for example, when we have an X axis is a integer and denotes days. And we are expecting the tick mark denotes weeks, in this way we can make the range spec grouping by 7 elements. With the help of the GroupBy decorator, this can be archived quite easily:

use plotters::prelude::*;
let mut buf = vec![0;1024*768*3];
let area = BitMapBackend::with_buffer(buf.as_mut(), (1024, 768)).into_drawing_area();
let chart = ChartBuilder::on(&area)
    .build_ranged((0..100).group_by(7), 0..100)
    .unwrap();

To apply this combinator, call ToGroupByRange::group_by method on any discrete coordinate spec.

Trait Implementations

impl<T: Clone + DiscreteRanged> Clone for GroupBy<T>[src]

impl<T: DiscreteRanged> DiscreteRanged for GroupBy<T>[src]

impl<T: DiscreteRanged> Ranged for GroupBy<T>[src]

type FormatOption = NoDefaultFormatting

This marker decides if Plotters default ValueFormatter implementation should be used. This assicated type can be one of follow two types: - DefaultFormatting will allow Plotters automatically impl the formatter based on Debug trait, if Debug trait is not impl for the Self::Value, ValueFormatter will not impl unless you impl it manually. Read more

type ValueType = T::ValueType

The type of this value in this range specification

impl<T, R: DiscreteRanged<ValueType = T> + ValueFormatter<T>> ValueFormatter<T> for GroupBy<R>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for GroupBy<T> where
    T: RefUnwindSafe

impl<T> Send for GroupBy<T> where
    T: Send

impl<T> Sync for GroupBy<T> where
    T: Sync

impl<T> Unpin for GroupBy<T> where
    T: Unpin

impl<T> UnwindSafe for GroupBy<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsRangedCoord for T where
    T: Ranged
[src]

type CoordDescType = T

type Value = <T as Ranged>::ValueType

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<DC> ReversibleRanged for DC where
    DC: DiscreteRanged
[src]

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<R> ValueFormatter<<R as Ranged>::ValueType> for R where
    R: Ranged<FormatOption = DefaultFormatting>,
    <R as Ranged>::ValueType: Debug
[src]