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

PercentOfTotalBinding Class

Defines the calculation of a percentage of all values in the window.

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

public class PercentOfTotalBinding :
    PercentOfTotalBindingBase

Remarks

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

<dx:PivotGridField ID="PercentOfTotal" Area="DataArea" AreaIndex="0"  Name="PercentOfTotal">
    <DataBindingSerializable>
        <dx:PercentOfTotalBinding PartitioningCriteria="ColumnValue">
            <SourceSerializable>
                <dx:DataSourceColumnBinding ColumnName="Extended_Price" />
            </SourceSerializable>
            </dx:PercentOfTotalBinding>
    </DataBindingSerializable>
    <CellFormat FormatString= "p" FormatType= "Numeric" ></CellFormat>
</dx:PivotGridField>

Note

The complete example is available in the GitHub repository: ASP.NET Web Forms Pivot Grid - How to Create Field Calculation Bindings.

For more information, see Data Binding API.

Implements

DevExpress.XtraPivotGrid.IDesignerContextProvider
See Also