Skip to main content

DeltaOptionsBase.ResultIndicationThreshold Property

Gets or sets the precision with which actual and target values are determined to be equal (comparison tolerance).

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

[DefaultValue(typeof(decimal), "0")]
public decimal ResultIndicationThreshold { get; set; }

Property Value

Type Default Description
Decimal "0"

A Decimal value that specifies the precision with which actual and target values are determined to be equal.

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 DeltaOptionsBase.ResultIndicationThresholdType property to select whether you wish to specify the comparison tolerance in percentage values or absolute values. Then, specify the ResultIndicationThreshold property to set the comparison tolerance.

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

See Also