diff options
| author | Jacob Palecki <[email protected]> | 2020-09-08 16:53:16 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-08 16:53:16 -0700 |
| commit | c6cc72badf507f13ef48e330efddb57fe3030a5d (patch) | |
| tree | e8960e5b9b9242bc18e4717acb5cdbb3ce524e1d /grapher/Models/AccelGUIFactory.cs | |
| parent | Merge pull request #20 from JacobPalecki/GUI (diff) | |
| download | rawaccel-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.cs | 6 |
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); |