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/Constants | |
| 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/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index aaf8bb9..a51b09c 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -89,6 +89,21 @@ namespace grapher /// <summary> Default text to be displayed on write button. </summary> public const string WriteButtonDelayText = "Delay"; + /// <summary> Title of sensitivity chart. </summary> + public const string SensitivityChartTitle = "Sensitivity"; + + /// <summary> Title of velocity chart. </summary> + public const string VelocityChartTitle = "Velocity"; + + /// <summary> Title of gain chart. </summary> + public const string GainChartTitle = "Gain"; + + /// <summary> Text for x component. </summary> + public const string XComponent = "X"; + + /// <summary> Text for y component. </summary> + public const string YComponent = "Y"; + /// <summary> Default name of settings file. </summary> public const string DefaultSettingsFileName = @"settings.json"; |