diff options
| author | Matthew Strasiotto <[email protected]> | 2021-05-01 20:11:35 +1000 |
|---|---|---|
| committer | Matthew Strasiotto <[email protected]> | 2021-05-01 20:11:35 +1000 |
| commit | 62dab586d17549b254b9be49163146cd9ed1cbfd (patch) | |
| tree | 3704693492f7060f2a814a3d83b4d00a1b9e6599 | |
| parent | Implement ChartXY.SetStreaming, sets colours, colors not set in setup (diff) | |
| download | rawaccel-62dab586d17549b254b9be49163146cd9ed1cbfd.tar.xz rawaccel-62dab586d17549b254b9be49163146cd9ed1cbfd.zip | |
Implement ChartState.SetStreaming
| -rw-r--r-- | grapher/Models/Charts/ChartState/ChartState.cs | 7 |
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); + } } } |