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

DeltaIndicationMode Enum

Lists values that specify types of indication displayed within delta elements.

Namespace: DevExpress.DashboardCommon

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

Declaration

public enum DeltaIndicationMode

Members

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

Values listed by this enumeration are used to set the DeltaOptionsBase.ResultIndicationMode property.

See Also