Skip to main content

PivotCustomChartDataSourceDataEventArgs.ItemDataMember Property

Gets the type of a chart data member that will represent the current pivot grid item.

Namespace: DevExpress.Web.ASPxPivotGrid

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

NuGet Package: DevExpress.Web

Declaration

public PivotChartItemDataMember ItemDataMember { get; }

Property Value

Type Description
PivotChartItemDataMember

A PivotChartItemDataMember enumeration member that specifies the type of a chart data member that will represent the current pivot grid item.

Available values:

Name Description
Argument

A series point’s argument.

Series

A series.

Value

A series point’s value.

Remarks

Use the ItemDataMember property to obtain whether the current pivot grid item will be represented by a series, a series point’s value, or a series point’s argument.

Data cell values are always represented by series points’ values in the chart. To specify whether row field values are represented by series point’s arguments, and column field values are represented by series, or vice versa, use the PivotGridOptionsChartDataSourceBase.ProvideDataByColumns property.

Use the PivotCustomChartDataSourceDataEventArgs.ItemType and PivotCustomChartDataSourceDataEventArgs.Value properties, to obtain the type of the current pivot grid item, and its value, respectively.

See Also