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
Declaration
[DefaultValue(DeltaIndicationMode.GreaterIsGood)]
public DeltaIndicationMode ResultIndicationMode { get; set; }
<DefaultValue(DeltaIndicationMode.GreaterIsGood)>
Public Property ResultIndicationMode As DeltaIndicationMode
Property Value
Available values:
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 topic describes how to manage delta settings for Gauges: Delta.
See Also