summaryrefslogtreecommitdiff
path: root/grapher/AccelGUI.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-08-12 19:04:23 -0700
committerJacob Palecki <[email protected]>2020-08-12 19:04:23 -0700
commita6a9f6785eb416ac48d34bb320265c812efc600b (patch)
tree871ca3005e21f1c172f955a457610ebd91cdc788 /grapher/AccelGUI.cs
parentFixed some edge cases around not using enter (diff)
downloadrawaccel-a6a9f6785eb416ac48d34bb320265c812efc600b.tar.xz
rawaccel-a6a9f6785eb416ac48d34bb320265c812efc600b.zip
Add ability to have x\y graphs
Diffstat (limited to 'grapher/AccelGUI.cs')
-rw-r--r--grapher/AccelGUI.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/grapher/AccelGUI.cs b/grapher/AccelGUI.cs
index ae05359..54564b3 100644
--- a/grapher/AccelGUI.cs
+++ b/grapher/AccelGUI.cs
@@ -169,9 +169,9 @@ namespace grapher
lastOutputMagnitude = outMagnitude;
}
- AccelCharts.SensitivityChart.Series[0].Points.DataBindXY(OrderedAccelPoints.Keys, OrderedAccelPoints.Values);
- AccelCharts.VelocityChart.Series[0].Points.DataBindXY(OrderedVelocityPoints.Keys, OrderedVelocityPoints.Values);
- AccelCharts.GainChart.Series[0].Points.DataBindXY(OrderedGainPoints.Keys, OrderedGainPoints.Values);
+ AccelCharts.SensitivityChart.ChartX.Series[0].Points.DataBindXY(OrderedAccelPoints.Keys, OrderedAccelPoints.Values);
+ AccelCharts.VelocityChart.ChartX.Series[0].Points.DataBindXY(OrderedVelocityPoints.Keys, OrderedVelocityPoints.Values);
+ AccelCharts.GainChart.ChartX.Series[0].Points.DataBindXY(OrderedGainPoints.Keys, OrderedGainPoints.Values);
}
#endregion methods