Skip to content

Commit

Permalink
refactor!: remove deprecated structures VerticalBarPlot, HorizontalBa…
Browse files Browse the repository at this point in the history
…rPlot, VerticalBoxPlot, HorizontalBoxPlot

The deprecated structures VerticalBarPlot, HorizontalBarPlot, VerticalBoxPlot, and HorizontalBoxPlot have been removed to clean up the codebase and improve maintainability.

BREAKING CHANGE: Removal of these structures may affect code that depends on them.
  • Loading branch information
alceal committed Sep 16, 2024
1 parent b19f736 commit 5267d49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 851 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ pub use crate::colors::Rgb;
pub use crate::legend::Legend;
pub use crate::shapes::Shape;
pub use crate::texts::Text;
pub use crate::traces::barplot::{BarPlot, HorizontalBarPlot, VerticalBarPlot};
pub use crate::traces::boxplot::{BoxPlot, HorizontalBoxPlot, VerticalBoxPlot};
pub use crate::traces::barplot::BarPlot;
pub use crate::traces::boxplot::BoxPlot;
pub use crate::traces::histogram::Histogram;
pub use crate::traces::lineplot::LinePlot;
pub use crate::traces::scatterplot::ScatterPlot;
Expand Down
Loading

0 comments on commit 5267d49

Please sign in to comment.