This commit is contained in:
John Lewin 2018-10-18 17:57:45 -07:00
parent 45f69b2fb7
commit 819c0b0b25
3 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
DoubleBuffer = true;
}
public bool DynamiclyScaleRange { get; set; } = true;
public bool DynamicallyScaleRange { get; set; } = true;
Color _goalColor = Color.Yellow;
public Color GoalColor
@ -57,7 +57,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
public void AddData(double NewData)
{
if (DynamiclyScaleRange)
if (DynamicallyScaleRange)
{
MaxValue = System.Math.Max(MaxValue, NewData);
MinValue = System.Math.Min(MinValue, NewData);