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

DashboardFormatCondition Enum

Lists values specifying comparison operators used to apply conditional styles.

Namespace: DevExpress.DashboardCommon

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

Declaration

public enum DashboardFormatCondition

Members

Name Description
Greater

The formatting is applied to elements whose values are greater than that specified by the FormatConditionValue.Value1 property.

GreaterOrEqual

The formatting is applied to elements whose values are greater than or equal to that specified by the FormatConditionValue.Value1 property.

Less

The formatting is applied to elements whose values are less than that specified by the FormatConditionValue.Value1 property.

LessOrEqual

The formatting is applied to elements whose values are less than or equal to that specified by the FormatConditionValue.Value1 property.

Equal

The formatting is applied to elements whose values are equal to a value assigned to the FormatConditionValue.Value1 property.

NotEqual

The formatting is applied to elements whose values are not equal to a value assigned to the FormatConditionValue.Value1 property.

Between

The formatting is applied to elements whose values fall into the range specified by the FormatConditionValue.Value1 and FormatConditionValue.Value2 properties.

NotBetween

The formatting is applied to elements whose values fall outside of the range specified by the FormatConditionValue.Value1 and FormatConditionValue.Value2 properties.

BetweenOrEqual

The formatting is applied to elements whose values are between or equal to the FormatConditionValue.Value1 and FormatConditionValue.Value2 property values.

NotBetweenOrEqual

The formatting is applied to elements whose values are not between or equal to the FormatConditionValue.Value1 and FormatConditionValue.Value2 property values.

ContainsText

The formatting is applied to elements whose values contain text specified by the FormatConditionValue.Value1 property.

Remarks

Values listed in this enumeration are used to set the FormatConditionValue.Condition property.

See Also