Any idea why I am crashing. I have tried putting in Value[0] and Value[1], ValueS, nothing works
Any help is really appreciated
AddPlot(Brushes.Green, "UpGap");
AddPlot(Brushes.Red, "DownGap");
}
else if (State == State.Configure)
{
}
}
protected override void OnBarUpdate()
{
UpGap[0] = 100;
DownGap[1] = 100;
}

Comment