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

DataFilterModel.Condition Property

Gets or sets the value of the DataFilter.Condition within the model.

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v18.2.Wizard.dll

Declaration

[PropertyForOptions]
[DefaultValue(DataFilterCondition.Equal)]
public DataFilterCondition Condition { get; set; }

Property Value

Type Default Description
DataFilterCondition **Equal**

The filtering condition.

Available values:

Name Description
Equal

Specifies the “equal to” comparison operator.

GreaterThan

Specifies the “greater than” comparison operator.

GreaterThanOrEqual

Specifies the “greater than or equal to” comparison operator.

LessThan

Specifies the “less than” comparison operator.

LessThanOrEqual

Specifies the “less than or equal to” comparison operator.

NotEqual

Specifies the “not equal to” comparison operator.

See Also