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.v20.2.dll

NuGet Package: DevExpress.Web

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.

View Example

<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>

For more information, see Data Binding API.

Implements

DevExpress.XtraPivotGrid.IDesignerContextProvider
See Also