diff options
| author | a1xd <[email protected]> | 2020-10-08 02:08:27 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-10-08 06:36:50 -0400 |
| commit | 37d2cb7d3ed25862683ef807712c7d50f71e8493 (patch) | |
| tree | 3852439d718d36a79ebf8b778e82ee5c06461eeb /grapher/Constants/Constants.cs | |
| parent | add toggle button + save gui settings on close (diff) | |
| download | rawaccel-37d2cb7d3ed25862683ef807712c7d50f71e8493.tar.xz rawaccel-37d2cb7d3ed25862683ef807712c7d50f71e8493.zip | |
add scroll to charts
Diffstat (limited to 'grapher/Constants/Constants.cs')
| -rw-r--r-- | grapher/Constants/Constants.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 639bd9b..5a05863 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -115,6 +115,9 @@ namespace grapher /// <summary> Color of font in active value labels. </summary> public static readonly Color ActiveValueFontColor = Color.FromArgb(255, 65, 65, 65); + public static readonly Point Origin = new Point(0); + public static readonly Size MaxSize = new Size(9999, 9999); + #endregion ReadOnly } } |