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

RankBinding Class

Defines the calculation of a ranking in the window.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public class RankBinding :
    RankBindingBase

Remarks

The following code snippet illustrates how to bind a PivotGrid field to the result of the Rank window calculation.

View Example

<dx:PivotGridField ID="Rank" Area="DataArea" AreaIndex="0"  Name="Rank">
    <DataBindingSerializable>
        <dx:RankBinding RankType="Unique" Order="Descending" PartitioningCriteria="ColumnValue">
            <SourceSerializable>
                <dx:DataSourceColumnBinding ColumnName="Extended_Price" />
            </SourceSerializable>
            </dx:RankBinding>
    </DataBindingSerializable>
    <CellFormat FormatType="Numeric"></CellFormat>
</dx:PivotGridField>

For more information, see Data Binding API.

Implements

DevExpress.XtraPivotGrid.IDesignerContextProvider
See Also