From 62dab586d17549b254b9be49163146cd9ed1cbfd Mon Sep 17 00:00:00 2001 From: Matthew Strasiotto <39424834+matthewstrasiotto@users.noreply.github.com> Date: Sat, 1 May 2021 20:11:35 +1000 Subject: Implement ChartState.SetStreaming --- grapher/Models/Charts/ChartState/ChartState.cs | 7 +++++++ 1 file changed, 7 insertions(+) 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); + } } } -- cgit v1.2.3