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

MovingCalculationBinding Class

Defines aggregations across a specified number of values before and/or after the current value.

Namespace: DevExpress.Web.ASPxPivotGrid

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

NuGet Package: DevExpress.Web

Declaration

public class MovingCalculationBinding :
    MovingCalculationBindingBase

Remarks

The following code snippet illustrates how to bind a PivotGrid field to the result of the Moving Calculation.

View Example

  <dx:PivotGridField ID="MovingCalculation" Area="DataArea" AreaIndex="0"  Name="MovingCalculation">
      <DataBindingSerializable>
          <dx:MovingCalculationBinding PartitioningCriteria="ColumnValue" Direction="AcrossThenDown" SummaryType="Average" PreviousValuesCount="1" 
              NextValuesCount="1" >
              <SourceSerializable>
                  <dx:DataSourceColumnBinding ColumnName="Extended_Price" />
              </SourceSerializable>
              </dx:MovingCalculationBinding>
      </DataBindingSerializable>
      <CellFormat FormatString ="c2" FormatType="Numeric"></CellFormat>
  </dx:PivotGridField>

For more information, see Data Binding API.

Implements

DevExpress.XtraPivotGrid.IDesignerContextProvider
See Also