Skip to main content

DeltaOptionsBase.ResultIndicationThresholdType Property

Gets or sets how the comparison tolerance (DeltaOptionsBase.ResultIndicationThreshold) is specified.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v24.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

#Declaration

[DefaultValue(DeltaIndicationThresholdType.Percent)]
public DeltaIndicationThresholdType ResultIndicationThresholdType { get; set; }

#Property Value

Type Default Description
DeltaIndicationThresholdType Percent

A DeltaIndicationThresholdType enumeration member that defines how the comparison tolerance is specified.

Available values:

Name Description
Absolute

The comparison tolerance is specified as the absolute difference between the compared values.

Percent

The comparison tolerance is specified as the percent difference between the compared values (the percentage of the absolute difference in the target value).

#Remarks

You can specify that a specific indication (DeltaOptionsBase.ResultIndicationMode) should display when the actual value exceeds the target value by 10% or by $2K. Use the ResultIndicationThresholdType property to select whether you wish to specify the comparison tolerance in percentage values or absolute values. Then, specify the DeltaOptionsBase.ResultIndicationThreshold property to set the comparison tolerance.

The following topic describes how to manage delta settings for Gauges: Delta.

See Also