summaryrefslogtreecommitdiff
path: root/grapher/Constants/Constants.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-01 21:45:42 -0700
committerJacob Palecki <[email protected]>2020-09-01 21:45:42 -0700
commit95cc3ed0a0bf66f5535b873f245bc1c35a145478 (patch)
treede1a9f20dee0239cf7a2204945249b497deb8f9e /grapher/Constants/Constants.cs
parentAdd X Y labels for by component (diff)
downloadrawaccel-95cc3ed0a0bf66f5535b873f245bc1c35a145478.tar.xz
rawaccel-95cc3ed0a0bf66f5535b873f245bc1c35a145478.zip
intermittent commit - large commit halfway done
Diffstat (limited to 'grapher/Constants/Constants.cs')
-rw-r--r--grapher/Constants/Constants.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs
index 61fa663..833512b 100644
--- a/grapher/Constants/Constants.cs
+++ b/grapher/Constants/Constants.cs
@@ -54,7 +54,7 @@ namespace grapher
public const int PossibleOptionsCount = 4;
/// <summary> Possible x/y options to display in a layout. </summary>
- public const int PossibleOptionsXYCount = 2;
+ public const int PossibleOptionsXYCount = 0;
/// <summary> Horizontal separation between charts, in pixels. </summary>
public const int ChartSeparationHorizontal = 10;
@@ -62,8 +62,20 @@ namespace grapher
/// <summary> Default horizontal separation between x and y fields, in pixels. </summary>
public const int DefaultFieldSeparation = 4;
+ /// <summary> Default horizontal separation between an option's label and box, in pixels. </summary>
+ public const int OptionLabelBoxSeperation = 10;
+
+ /// <summary> Default horizontal separation between an option's label and box, in pixels. </summary>
+ public const int OptionVerticalSeperation = 4;
+
/// <summary> Format string for shortened x and y fields. </summary>
public const string ShortenedFieldFormatString = "0.###";
+
+ /// <summary> Format string for shortened x and y dropdowns. </summary>
+ public const string AccelDropDownDefaultFullText = "Acceleration Type";
+
+ /// <summary> Format string for default dropdowns. </summary>
+ public const string AccelDropDownDefaultShortText = "Accel Type";
#endregion Constants
#region ReadOnly