dataviz 0.1.9

A modular library for creating charts and graphs in Rust.
Documentation
1
2
3
4
5
6
7
/// Represents the type of axis in a graph or chart.
pub enum AxisType {
    /// The horizontal axis, typically representing independent variables or categories.
    AxisX,
    /// The vertical axis, typically representing dependent variables or values.
    AxisY,
}