summaryrefslogtreecommitdiff
path: root/grapher/Models/AccelGUIFactory.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-08 16:53:16 -0700
committerJacob Palecki <[email protected]>2020-09-08 16:53:16 -0700
commitc6cc72badf507f13ef48e330efddb57fe3030a5d (patch)
treee8960e5b9b9242bc18e4717acb5cdbb3ce524e1d /grapher/Models/AccelGUIFactory.cs
parentMerge pull request #20 from JacobPalecki/GUI (diff)
downloadrawaccel-c6cc72badf507f13ef48e330efddb57fe3030a5d.tar.xz
rawaccel-c6cc72badf507f13ef48e330efddb57fe3030a5d.zip
Clean up chart titles, axes, legends
Diffstat (limited to 'grapher/Models/AccelGUIFactory.cs')
-rw-r--r--grapher/Models/AccelGUIFactory.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/grapher/Models/AccelGUIFactory.cs b/grapher/Models/AccelGUIFactory.cs
index 42a7b83..189c82a 100644
--- a/grapher/Models/AccelGUIFactory.cs
+++ b/grapher/Models/AccelGUIFactory.cs
@@ -91,9 +91,9 @@ namespace grapher.Models
{
var accelCharts = new AccelCharts(
form,
- new ChartXY(accelerationChart, accelerationChartY),
- new ChartXY(velocityChart, velocityChartY),
- new ChartXY(gainChart, gainChartY),
+ new ChartXY(accelerationChart, accelerationChartY, Constants.SensitivityChartTitle),
+ new ChartXY(velocityChart, velocityChartY, Constants.VelocityChartTitle),
+ new ChartXY(gainChart, gainChartY, Constants.GainChartTitle),
showVelocityGainToolStripMenuItem,
showLastMouseMoveMenuItem,
writeButton);