plot(line_chart): Add missing natural stroke style (#1366)

This commit is contained in:
Floyd Wang 2025-10-14 09:40:10 +08:00 committed by GitHub
parent 5f13b49690
commit 1abb6c2222
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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