Skip to main content
A newer version of this page is available. .

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.v18.2.Core.dll

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.

Property Paths

You can access this nested property as listed below:

Object Type Path to ResultIndicationThreshold
Card
.LayoutDeltaOptions.DeltaOptions.ResultIndicationThreshold
DeltaMap
.DeltaOptions.ResultIndicationThreshold
Gauge
.DeltaOptions.ResultIndicationThreshold
GridDeltaColumn
.DeltaOptions.ResultIndicationThreshold
KpiElement
.DeltaOptions.ResultIndicationThreshold

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