diff options
| author | Jacob Palecki <[email protected]> | 2020-09-22 14:01:05 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-22 14:01:05 -0700 |
| commit | 720a45289b2342c62eebb0e1cee3c4b88c9fe696 (patch) | |
| tree | 19447d387a1f69eb16baebaf6b2fc97dda5b3709 /grapher/Models/Charts/ChartState/CombinedState.cs | |
| parent | Rename experiment two to motivity (diff) | |
| download | rawaccel-720a45289b2342c62eebb0e1cee3c4b88c9fe696.tar.xz rawaccel-720a45289b2342c62eebb0e1cee3c4b88c9fe696.zip | |
Scaling improvement, remove y data from xy combined
Diffstat (limited to 'grapher/Models/Charts/ChartState/CombinedState.cs')
| -rw-r--r-- | grapher/Models/Charts/ChartState/CombinedState.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartState/CombinedState.cs b/grapher/Models/Charts/ChartState/CombinedState.cs index 17cd68a..f4b6b8f 100644 --- a/grapher/Models/Charts/ChartState/CombinedState.cs +++ b/grapher/Models/Charts/ChartState/CombinedState.cs @@ -36,6 +36,8 @@ namespace grapher.Models.Charts.ChartState SensitivityChart.Bind(Data.Combined.AccelPoints); VelocityChart.Bind(Data.Combined.VelocityPoints); GainChart.Bind(Data.Combined.GainPoints); + SensitivityChart.SetMinMax(Data.Combined.MinAccel, Data.Combined.MaxAccel); + GainChart.SetMinMax(Data.Combined.MinGain, Data.Combined.MaxGain); } public override void Calculate(ManagedAccel accel, DriverSettings settings) |