Skip to main content

PivotFieldStateChangedEventArgs.MinIndex Property

Gets the minimum row index (for row fields) or column index (for column fields) that corresponds to the field value currently being processed.

Namespace: DevExpress.Web.ASPxPivotGrid

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

NuGet Package: DevExpress.Web

Declaration

public int MinIndex { get; }

Property Value

Type Description
Int32

An integer value that specifies the minimum row or column index that corresponds to the processed field value.

Remarks

  • Row Fields

    If a row field value is being processed, use the PivotFieldStateChangedEventArgs.MaxIndex and MinIndex properties to identify the range of rows that correspond to the field value. In the image below, six rows correspond to the Beverages row field value. The minimum row index equals 0, and the maximum row index equals 5.

  • Column Fields

    If a column field value is being processed, use the PivotFieldStateChangedEventArgs.MaxIndex and MinIndex properties to identify the range of columns that correspond to the field value. In the image below, four columns correspond to the 1995 column field value. The minimum column index equals 3, and the maximum column index equals 6.

pivotgrid_minmaxindexes

See Also