Skip to main content
All docs
V25.1
  • Tag

    ColumnBase.AllowedDataAnalysisFilters Property

    Gets or sets data analysis filters that the GridControl‘s column supports.

    Namespace: DevExpress.Xpf.Grid

    Assembly: DevExpress.Xpf.Grid.v25.1.Core.dll

    NuGet Package: DevExpress.Wpf.Grid.Core

    Declaration

    public AllowedDataAnalysisFilters? AllowedDataAnalysisFilters { get; set; }

    Property Value

    Type Description
    Nullable<AllowedDataAnalysisFilters>

    Allowed data analysis filters that the GridControl‘s column supports.

    Available values:

    Name Description
    None

    None of data analysis operators are allowed.

    Top

    The Top operator.

    Bottom

    The Bottom operator.

    AboveAverage

    The Above Average operator.

    BelowAverage

    The Below Average operator.

    Unique

    The Unique operator.

    Duplicate

    The Duplicate operator.

    All

    All data analysis operators are allowed.

    Remarks

    Refer to the following help topic for more information: Allowed Filters.

    See Also