Skip to main content

DeltaOptionsBase.ResultIndicationMode Property

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

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

#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.

#Remarks

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

See Also