diff options
| author | JacobPalecki <[email protected]> | 2021-05-19 15:04:45 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-19 15:04:45 -0700 |
| commit | f88751f8653b4bce9d5e3ed3109da2f2427a6f99 (patch) | |
| tree | c67a4e59da866c86cdfffb786a76090525637166 /grapher/Constants | |
| parent | Merge pull request #86 from a1xd/fix-input (diff) | |
| parent | remove unused variable, improve legend position (diff) | |
| download | rawaccel-f88751f8653b4bce9d5e3ed3109da2f2427a6f99.tar.xz rawaccel-f88751f8653b4bce9d5e3ed3109da2f2427a6f99.zip | |
Merge pull request #87 from matthewstrasiotto/streamer_mode
Improve use of whitespace on charts, make elements bolder, add "streaming mode" toggle for overlaying charts using Chroma key in OBS
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 446f5fa..ce18389 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -129,6 +129,27 @@ 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; + + /// <summary> Background Color When Streamer Mode Active </summary> + public static readonly System.Drawing.Color bgStreamer = System.Drawing.Color.Green; + + /// <summary> Foreground Color When Streamer Mode Inactive </summary> + public static readonly System.Drawing.Color fgNoStreamer = System.Drawing.Color.Black; + + /// <summary> Background Color When Streamer Mode Inactive </summary> + public static readonly System.Drawing.Color bgNoStreamer = System.Drawing.Color.White; + #endregion Constants #region ReadOnly |