[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDataBar.MinPoint

MinPoint Property

MinPoint

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.

Declaration
IConditionValue MinPoint { get; }
ReadOnly Property MinPoint As IConditionValue
Examples
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;