Skip to main content

plotlars_core/components/
mod.rs

1pub mod arrangement;
2pub mod axis;
3pub mod bar_mode;
4pub mod cell;
5pub mod color;
6pub mod colorbar;
7pub mod coloring;
8pub mod dimensions;
9pub mod direction;
10pub mod exponent;
11pub mod facet;
12pub mod fill;
13pub mod header;
14pub mod intensity;
15pub mod legend;
16pub mod lighting;
17pub mod line;
18pub mod mode;
19pub mod orientation;
20pub mod palette;
21pub mod shape;
22pub mod text;
23pub mod tick;
24
25pub use arrangement::Arrangement;
26pub use axis::Axis;
27pub use bar_mode::BarMode;
28pub use cell::Cell;
29pub(crate) use color::DEFAULT_PLOTLY_COLORS;
30pub use color::{parse_color, Rgb};
31pub use colorbar::ColorBar;
32pub use coloring::Coloring;
33pub use dimensions::Dimensions;
34pub use direction::Direction;
35pub use exponent::ValueExponent;
36pub use facet::{FacetConfig, FacetScales};
37pub use fill::Fill;
38pub use header::Header;
39pub use intensity::IntensityMode;
40pub use legend::Legend;
41pub use lighting::Lighting;
42pub use line::Line;
43pub use mode::Mode;
44pub use orientation::Orientation;
45pub use palette::Palette;
46pub use shape::Shape;
47pub use text::Text;
48pub use tick::TickDirection;