summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Strasiotto <[email protected]>2021-05-01 20:11:35 +1000
committerMatthew Strasiotto <[email protected]>2021-05-01 20:11:35 +1000
commit62dab586d17549b254b9be49163146cd9ed1cbfd (patch)
tree3704693492f7060f2a814a3d83b4d00a1b9e6599
parentImplement ChartXY.SetStreaming, sets colours, colors not set in setup (diff)
downloadrawaccel-62dab586d17549b254b9be49163146cd9ed1cbfd.tar.xz
rawaccel-62dab586d17549b254b9be49163146cd9ed1cbfd.zip
Implement ChartState.SetStreaming
-rw-r--r--grapher/Models/Charts/ChartState/ChartState.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartState/ChartState.cs b/grapher/Models/Charts/ChartState/ChartState.cs
index 5a86713..a50eaf0 100644
--- a/grapher/Models/Charts/ChartState/ChartState.cs
+++ b/grapher/Models/Charts/ChartState/ChartState.cs
@@ -117,5 +117,12 @@ namespace grapher.Models.Charts.ChartState
ChartXY.SetStandard(GainChart.ChartY);
}
}
+
+ public void SetStreaming(bool streaming)
+ {
+ SensitivityChart.SetStreaming(streaming);
+ GainChart.SetStreaming(streaming);
+ VelocityChart.SetStreaming(streaming);
+ }
}
}