Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.ListSource Property

Gets the actual data source whose data is displayed within the control.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

[Browsable(false)]
public IList ListSource { get; }

#Property Value

Type Description
IList

An IList object that represents the actual data source that provides data for the control.

#Remarks

To bind the PivotGrid control to a data source use the PivotGridControl.DataSource and PivotGridControl.DataMember properties. If the control is bound to a DataTable object the ListSource property will return the DataView object created for this DataTable. If the control is bound to an object that implements the IList interface, the ListSource property will return this IList

See Also