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

PivotChartDataSourceRow.RowValueInfo Property

Gets information about the row field value that corresponds to the current datasource row.

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

public PivotFieldValueEventArgs RowValueInfo { get; }

Property Value

Type Description
PivotFieldValueEventArgs

A PivotFieldValueEventArgs object that contains information about the row field value that corresponds to the current datasource row.

Remarks

The returned PivotFieldValueEventArgs object allows you to identify the field value, its position, etc.

The main members exposed by the PivotFieldValueEventArgs object are listed in the following table.

PivotFieldEventArgsBase<T>.Field

Gets the field being processed.

PivotFieldValueEventArgsBase<T>.Value

Gets the column field or row field value that corresponds to the currently processed column/row header.

PivotFieldValueEventArgsBase<T>.MinIndex

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

PivotFieldValueEventArgsBase<T>.MaxIndex

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

PivotFieldValueEventArgsBase<T>.DataField

Gets the data field that specifies the processed value.

PivotFieldValueEventArgsBase<T>.GetHigherLevelFields

Returns the parent field for the field value currently being processed.

PivotFieldValueEventArgsBase<T>.GetHigherLevelFieldValue

Returns the value of a specific parent field corresponding to the field value currently being processed.

To obtain information about the column field value that corresponds to the current datasource row, use PivotChartDataSourceRow.ColumnValueInfo property. To obtain information about the corresponding cell, use the PivotChartDataSourceRow.CellInfo property.

To specify the series, argument and value of a chart point that will represent the current datasource row, use the PivotChartDataSourceRowBase.Series, PivotChartDataSourceRowBase.Argument and PivotChartDataSourceRowBase.Value properties respectively.

See Also