I try to set the max and min properties of a relative strength index indicator Axis with the following piece of code:
SoftwareFX.ChartFX.Financial.Server.
RelativeStrengthIndex RelativeStrengthIndex = new SoftwareFX.ChartFX.Financial.Server.RelativeStrengthIndex();RelativeStrengthIndex.Visible = true; financial1.Gallery.Analytical.Studies.Add(RelativeStrengthIndex); financial1.Gallery.Analytical.Palette = "Financial.Market"; RelativeStrengthIndex.Periods = 70;
RelativeStrengthIndex.Axis.Max = 100; // This is where the exception is thrown
RelativeStrengthIndex.Axis.Min = 0; RelativeStreng