dataviz 0.1.9

A modular library for creating charts and graphs in Rust.
Documentation
1
2
3
4
5
6
7
/// Represents the orientation of a chart, graph, or component.
pub enum Orientation {
    /// Vertical orientation, typically used for charts where data is arranged along a vertical axis.
    Vertical,
    /// Horizontal orientation, typically used for charts where data is arranged along a horizontal axis.
    Horizontal,
}