Skip to content

Commit e14193c

Browse files
Make heat_map module public to expose Smoothing enum. (#159)
* Make heat_map module public to expose Smoothing enum. Signed-off-by: Andrei Gherghescu <[email protected]> --------- Signed-off-by: Andrei Gherghescu <[email protected]> Co-authored-by: Andrei Gherghescu <[email protected]>
1 parent 3130f5a commit e14193c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: plotly/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ pub use configuration::Configuration;
3030
pub use layout::Layout;
3131
pub use plot::{ImageFormat, Plot, Trace};
3232
// Also provide easy access to modules which contain additional trace-specific types
33-
pub use traces::{box_plot, contour, histogram, image, mesh3d, sankey, scatter_mapbox, surface};
33+
pub use traces::{
34+
box_plot, contour, heat_map, histogram, image, mesh3d, sankey, scatter_mapbox, surface,
35+
};
3436
// Bring the different trace types into the top-level scope
3537
pub use traces::{
3638
Bar, BoxPlot, Candlestick, Contour, DensityMapbox, HeatMap, Histogram, Image, Mesh3D, Ohlc,

Diff for: plotly/src/traces/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub mod box_plot;
55
mod candlestick;
66
pub mod contour;
77
mod density_mapbox;
8-
mod heat_map;
8+
pub mod heat_map;
99
pub mod histogram;
1010
pub mod image;
1111
pub mod mesh3d;

0 commit comments

Comments
 (0)