Skip to main content

PivotFileDataSource(Stream) Constructor

Initializes a new instance of the PivotFileDataSource class, and loads pivot grid data from the specified stream.

Namespace: DevExpress.Data.PivotGrid

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

public PivotFileDataSource(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object that represents the stream from which to load data.

Remarks

After the PivotFileDataSource object has been created, assign it to a pivot grid’s PivotGridControl.DataSource property, to pass the data to the Pivot Grid Control.

To restore a pivot grid’s data from a file identified by its name, use another overload of the constructor that takes a String parameter.

See Also