summaryrefslogtreecommitdiffstats
path: root/vendor/plotters/src/coord/ranged1d/combinators/mod.rs
blob: 2d5280248cae7e7e2774bab40ae5758e0ce2d52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mod ckps;
pub use ckps::{BindKeyPointMethod, BindKeyPoints, WithKeyPointMethod, WithKeyPoints};

mod group_by;
pub use group_by::{GroupBy, ToGroupByRange};

mod linspace;
pub use linspace::{IntoLinspace, Linspace};

mod logarithmic;
pub use logarithmic::{IntoLogRange, LogCoord, LogScalable};

#[allow(deprecated)]
pub use logarithmic::LogRange;

mod nested;
pub use nested::{BuildNestedCoord, NestedRange, NestedValue};

mod partial_axis;
pub use partial_axis::{make_partial_axis, IntoPartialAxis};