From 9a506f235ce7903e345f2deecccdfd91bbc88304 Mon Sep 17 00:00:00 2001 From: Matthew Strasiotto <39424834+matthewstrasiotto@users.noreply.github.com> Date: Sat, 1 May 2021 20:33:57 +1000 Subject: remove Settings.Settings based config, migrate defintitions to constants --- grapher/Constants/Constants.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'grapher/Constants/Constants.cs') 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 /// Style used by System.Double.Parse public const NumberStyles FloatStyle = NumberStyles.Float | NumberStyles.AllowThousands; + /// Font Size for Chart Titles + public const float ChartTitleFontSize = 15; + + /// Font Size for Chart Axis Titles + public const float ChartAxisFontSize = 12; + + /// Line Width For Series data on chart + public const int ChartSeriesLineWidth = 3; + /// Foreground Color When Streamer Mode Active public static readonly System.Drawing.Color fgStreamer = System.Drawing.Color.White; -- cgit v1.2.3