Skip to main content

PivotFileDataSource(Stream, ICustomObjectConverter) 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,
    ICustomObjectConverter customObjectConverter
)

Parameters

Name Type Description
stream Stream

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

customObjectConverter ICustomObjectConverter

An object that implements the ICustomObjectConverter interface, which is a custom serializer.

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.

If some of the data source field values are custom objects (not numeric or string values), use the customObjectConverter parameter, to specify a serializer to be used to process them. It must be equal (i.e. be able to process objects of the same types in the same way) to the serializer used to save the data source to the file or stream (the one stored in the PivotGridOptionsData.CustomObjectConverter property when the data source was saved).

See Also