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

DataFilter.Condition Property

Gets or sets the comparison operator used to filter the data points within a series.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v20.1.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, DevExpress.Wpf.Charts

Declaration

public DataFilterCondition Condition { get; set; }

Property Value

Type Description
DataFilterCondition

A DataFilterCondition enumeration value.

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.

Remarks

Use the Condition property to specify a condition that must be satisfied when filtering is applied to a series. The Condition property represents the comparison operator used to compare the values of the series’ data points with the filter value specified by the DataFilter.Value property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Condition property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also