diff options
| author | Matthew Strasiotto <[email protected]> | 2021-05-01 20:33:57 +1000 |
|---|---|---|
| committer | Matthew Strasiotto <[email protected]> | 2021-05-01 20:33:57 +1000 |
| commit | 9a506f235ce7903e345f2deecccdfd91bbc88304 (patch) | |
| tree | 2a0b309999de4d778951e9fd29336f76fa10fab7 /grapher/Constants | |
| parent | Update marker size for charts to be bigger (diff) | |
| download | rawaccel-9a506f235ce7903e345f2deecccdfd91bbc88304.tar.xz rawaccel-9a506f235ce7903e345f2deecccdfd91bbc88304.zip | |
remove Settings.Settings based config, migrate defintitions to constants
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 6710aa0..ce18389 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -129,6 +129,15 @@ namespace grapher /// <summary> Style used by System.Double.Parse </summary> public const NumberStyles FloatStyle = NumberStyles.Float | NumberStyles.AllowThousands; + /// <summary> Font Size for Chart Titles </summary> + public const float ChartTitleFontSize = 15; + + /// <summary> Font Size for Chart Axis Titles </summary> + public const float ChartAxisFontSize = 12; + + /// <summary> Line Width For Series data on chart </summary> + public const int ChartSeriesLineWidth = 3; + /// <summary> Foreground Color When Streamer Mode Active </summary> public static readonly System.Drawing.Color fgStreamer = System.Drawing.Color.White; |