[]
Gets the IConditionValue that specifies how the shortest bar is evaluated for a data bar conditional format.
Use the returned object to configure the minimum threshold for the data bar, such as a numeric limit or another supported condition value type.
IConditionValue MinPoint { get; }
ReadOnly Property MinPoint As IConditionValue
worksheet.Range["A1:A3"].Value = new object[,] {{10}, {20}, {30}};
IDataBar dataBar = worksheet.Range["A1:A3"].FormatConditions.AddDatabar();
IConditionValue minPoint = dataBar.MinPoint;
minPoint.Type = ConditionValueTypes.Number;
minPoint.Value = 10;