use cratePlotType;
/// A trait defining the type of graph or plot used for visualization purposes.
///
/// The `GraphType` trait is designed to provide a standardized way to determine
/// the visualization type for a given data representation. Implementors of this
/// trait should define the specific plot type that suits their data or visualization needs.
///
/// # Usage
/// Implement this trait for any data structure or context that requires a
/// well-defined graph type for displaying data.
///