Added restart settings.

This commit is contained in:
2025-08-15 09:52:56 +02:00
parent ea1d13012e
commit 5537a991d3
5 changed files with 23 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ pub struct TimeSeriesPlot {
impl TimeSeriesPlot {
pub fn new() -> Self {
let max_points = 2000;
let max_points = 100;
Self {
values: (0..max_points as i32)
.map(|i| PlotPoint::new(i, 0.0))