Skip to main content

SetMinPointValue

Sets the value for the minimum value condition for the data bar.

Syntax

expression.SetMinPointValue(value);

expression - A variable that represents a ApiDatabar class.

Parameters

NameRequired/OptionalData typeDefaultDescription
valueRequiredstring | numberThe value of the minimum value condition.

Returns

This method doesn't return any data.

Example

Specify the lower threshold at which a data bar begins to appear in a spreadsheet.

// How do I set the exact number that represents the minimum bar length in a spreadsheet?

// Start the data bar scale at a specific value so bars below that point are not shown in a spreadsheet.

let worksheet = Api.GetActiveSheet();

worksheet.GetRange("A1").SetValue("Sales Data");
worksheet.GetRange("A2").SetValue(100);
worksheet.GetRange("A3").SetValue(250);
worksheet.GetRange("A4").SetValue(150);
worksheet.GetRange("A5").SetValue(300);
worksheet.GetRange("A6").SetValue(75);

let dataRange = worksheet.GetRange("A2:A6");
let formatConditions = dataRange.GetFormatConditions();

let dataBar = formatConditions.AddDatabar();

worksheet.GetRange("C1").SetValue("Before:");
worksheet.GetRange("C2").SetValue(dataBar.GetMinPointValue() || "Auto");

dataBar.SetMinPointValue(50);

worksheet.GetRange("C3").SetValue("After:");
worksheet.GetRange("C4").SetValue(dataBar.GetMinPointValue() || "Auto");