Skip to content

Commit a235625

Browse files
committed
make scatter trace specific types public
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent e9cba68 commit a235625

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

plotly/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ pub use layout::Layout;
3131
pub use plot::{ImageFormat, Plot, Trace};
3232
// Also provide easy access to modules which contain additional trace-specific types
3333
pub use traces::{
34-
box_plot, contour, heat_map, histogram, image, mesh3d, sankey, scatter_mapbox, surface,
34+
box_plot, contour, heat_map, histogram, image, mesh3d, sankey, scatter, scatter3d,
35+
scatter_mapbox, surface,
3536
};
3637
// Bring the different trace types into the top-level scope
3738
pub use traces::{

plotly/src/traces/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ pub mod mesh3d;
1212
mod ohlc;
1313
pub mod pie;
1414
pub mod sankey;
15-
mod scatter;
16-
mod scatter3d;
15+
pub mod scatter;
16+
pub mod scatter3d;
1717
pub mod scatter_mapbox;
1818
mod scatter_polar;
1919
pub mod surface;

0 commit comments

Comments
 (0)