PivotCustomChartDataSourceDataEventArgs.ItemType Property
Gets a value representing the type of an ASPxPivotGrid control's item to be represented in a WebChartControl.
Namespace: DevExpress.Web.ASPxPivotGrid
Assembly: DevExpress.Web.ASPxPivotGrid.v19.2.dll
Declaration
public PivotChartItemType ItemType { get; }
Public ReadOnly Property ItemType As PivotChartItemType
Property Value
Examples
The following example demonstrates how to add custom text to data prepared by the ASPxPivotGrid, to display it in a WebChartControl.
For this, it is necessary to handle the ASPxPivotGrid.CustomChartDataSourceData event. In this event handler, you can determine the item type via the PivotCustomChartDataSourceDataEventArgs.ItemType property and change the PivotCustomChartDataSourceDataEventArgs.Value according to your custom requirements.
See Also