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

DeltaOptionsBase.ResultIndicationMode Property

Gets or sets which indication should be displayed within this delta element.

Namespace: DevExpress.DashboardCommon

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

Declaration

[DefaultValue(DeltaIndicationMode.GreaterIsGood)]
public DeltaIndicationMode ResultIndicationMode { get; set; }

Property Value

Type Default Description
DeltaIndicationMode **GreaterIsGood**

A DeltaIndicationMode value that specifies which indication should be displayed within this delta element.

Available values:

Name Description
GreaterIsGood

If the actual value is greater than the target value, the “Good” indicator (Delta_GoodIndicator - in WinForms) is displayed and the delta value is painted in green.

Otherwise, the “Bad” indicator (Delta_BadIndicator - in WinForms) is shown and the delta value is painted in red.

LessIsGood

If the actual value is greater than the target value, the “Bad” indicator (Delta_BadIndicator - in WinForms) is displayed and the delta value is painted in red.

Otherwise, the “Good” indicator (Delta_GoodIndicator - in WinForms) is shown and the delta value is painted in green.

WarningIfGreater

The “Warning” indicator (Delta_WarningIndicator - in WinForms) is shown if the actual value is greater than the target value.

WarningIfLess

The “Warning” indicator (Delta_WarningIndicator - in WinForms) is shown if the actual value is less than the target value.

NoIndication

No special indication is shown.

Property Paths

You can access this nested property as listed below:

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

Remarks

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

See Also