windowsforms-devexpress-dot-xtracharts-dot-designer-dot-datafiltermodel.md
Gets or sets the value of the DataFilter.Condition within the model.
Namespace : DevExpress.XtraCharts.Designer
Assembly : DevExpress.XtraCharts.v25.2.Wizard.dll
NuGet Package : DevExpress.Win.Charts
[DefaultValue(DataFilterCondition.Equal)]
[PropertyForOptions]
public DataFilterCondition Condition { get; set; }
<PropertyForOptions>
<DefaultValue(DataFilterCondition.Equal)>
Public Property Condition As DataFilterCondition
| 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