New to Telerik Document ProcessingStart a free 30-day trial

Displays icons in cells based on numeric value thresholds, categorizing data into 3, 4, or 5 ranges with distinct visual indicators.

Definition

Constructors

Initializes a new IconSetRule with a custom icon set value context defining thresholds and icons.

C#
public IconSetRule(IconSetValueContextBase values)
Parameters:valuesIconSetValueContextBase

Initializes a new IconSetRule with a preset icon set and optional reversal of icon order.

C#
public IconSetRule(PresetIconSet presetIconSet, bool isReversed = false)
Parameters:presetIconSetPresetIconSetisReversedbool

Properties

Gets whether the icon set order is reversed, swapping icons for highest and lowest value ranges.

C#
public bool IsReversed { get; }

Gets or sets whether only the icon is visible, hiding the underlying numeric cell value.

C#
public bool ShowIconOnly { get; set; }

Gets the icon set value context that defines the value thresholds and associated icons for each range.

C#
public IconSetValueContextBase ValueContext { get; }