DataFilterModel.Condition Property
Gets or sets the value of the DataFilter.Condition within the model.
Namespace: DevExpress.XtraCharts.Designer
Assembly: DevExpress.XtraCharts.v25.1.Wizard.dll
NuGet Package: DevExpress.Win.Charts
Declaration
[DefaultValue(DataFilterCondition.Equal)]
[PropertyForOptions]
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