diff --git a/crates/ui/src/chart/line_chart.rs b/crates/ui/src/chart/line_chart.rs index 8660a6ee..c9a03b9d 100644 --- a/crates/ui/src/chart/line_chart.rs +++ b/crates/ui/src/chart/line_chart.rs @@ -59,6 +59,11 @@ where self } + pub fn natural(mut self) -> Self { + self.stroke_style = StrokeStyle::Natural; + self + } + pub fn linear(mut self) -> Self { self.stroke_style = StrokeStyle::Linear; self