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

RunningTotalBinding Class

Defines the calculation that aggregates values cumulatively in the window.

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

public class RunningTotalBinding :
    RunningTotalBindingBase

Remarks

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

  <dx:PivotGridField ID="RunningTotal" Area="DataArea" AreaIndex="0"  Name="RunningTotal">
      <DataBindingSerializable>
        <dx:RunningTotalBinding SummaryType="Average"  Direction="AcrossThenDown" PartitioningCriteria="ColumnValue">
            <SourceSerializable>
                <dx:DataSourceColumnBinding ColumnName="Extended_Price" />
            </SourceSerializable>
            </dx:RunningTotalBinding>
      </DataBindingSerializable>
      <CellFormat FormatString ="c2" 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