dashboard-devexpress-dot-dashboardcommon-32db1aaa.md
Lists values that specify types of indication displayed within delta elements.
Namespace : DevExpress.DashboardCommon
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public enum DeltaIndicationMode
Public Enum DeltaIndicationMode
| Name | Description |
|---|---|
GreaterIsGood |
If the actual value is greater than the target value, the “Good” indicator ( - in WinForms) is displayed and the delta value is painted in green.
Otherwise, the “Bad” indicator ( - 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 ( - in WinForms) is displayed and the delta value is painted in red.
Otherwise, the “Good” indicator ( - in WinForms) is shown and the delta value is painted in green.
|
| WarningIfGreater |
The “Warning” indicator ( - in WinForms) is shown if the actual value is greater than the target value.
|
| WarningIfLess |
The “Warning” indicator ( - in WinForms) is shown if the actual value is less than the target value.
|
| NoIndication |
No special indication is shown.
|
The following properties accept/return DeltaIndicationMode values:
Values listed by this enumeration are used to set the DeltaOptionsBase.ResultIndicationMode property.
See Also