Skip to main content

SetShowIconOnly

Specifies whether to display only icons in the icon set rule (without cell values).

Syntax

expression.SetShowIconOnly(showIconOnly);

expression - A variable that represents a ApiIconSetCondition class.

Parameters

NameRequired/OptionalData typeDefaultDescription
showIconOnlyRequiredbooleanTrue to show only icons, false to show both icons and values.

Returns

boolean

Example

Hide cell values and show only the icons from an icon set rule in a spreadsheet.

// How do I make cells display just the icon without the underlying number in a spreadsheet?

// Let icons carry the full visual message by removing the numeric values from view.

let worksheet = Api.GetActiveSheet();

worksheet.GetRange("A1").SetValue("Status");
worksheet.GetRange("A2").SetValue(90);
worksheet.GetRange("A3").SetValue(60);
worksheet.GetRange("A4").SetValue(30);

let range = worksheet.GetRange("A2:A4");
let formatConditions = range.GetFormatConditions();
let iconCondition = formatConditions.AddIconSetCondition();

worksheet.GetRange("B1").SetValue("Before: Shows icons and values");
iconCondition.SetShowIconOnly(true);
worksheet.GetRange("B2").SetValue("After: Shows icons only");