1 //! A collection of the most used traits, structs and enums
2 
3 pub use crate::candlestick::Candlesticks;
4 pub use crate::curve::Curve::{Dots, Impulses, Lines, LinesPoints, Points, Steps};
5 pub use crate::errorbar::ErrorBar::{XErrorBars, XErrorLines, YErrorBars, YErrorLines};
6 pub use crate::filledcurve::FilledCurve;
7 pub use crate::key::{Boxed, Horizontal, Justification, Order, Position, Stacked, Vertical};
8 pub use crate::proxy::{Font, Label, Output, Title};
9 pub use crate::traits::{Configure, Plot, Set};
10 pub use crate::{
11     Axes, Axis, BoxWidth, Color, Figure, FontSize, Grid, Key, LineType, LineWidth, Opacity,
12     PointSize, PointType, Range, Scale, ScaleFactor, Size, Terminal, TicLabels,
13 };
14