跳到主要内容

GetShowValue

Returns whether the data bar displays the cell value.

Syntax

expression.GetShowValue();

expression - A variable that represents a ApiDatabar class.

Parameters

This method doesn't have any parameters.

Returns

boolean

Example

This example demonstrates getting the show value setting from a data bar conditional formatting rule.

// How to check if the data bar shows the value.

// Get the show value setting of a data bar conditional formatting rule.

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();

let showValue = dataBar.GetShowValue();

worksheet.GetRange("C1").SetValue("Show Value:");
worksheet.GetRange("C2").SetValue(showValue ? "Yes" : "No");