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

XRPivotGrid.OLAPDataProvider Property

Specifies an OLAP data provider.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

[DefaultValue(OLAPDataProvider.Default)]
[SRCategory(ReportStringId.CatData)]
public OLAPDataProvider OLAPDataProvider { get; set; }

#Property Value

Type Default Description
OLAPDataProvider Default

An OLAPDataProvider enumeration member that specifies which data provider should be used to bind to an OLAP cube.

Available values:

Name Description
Default

The default OLAP provider (see the respective property description for details).

Adomd

The ADOMD.NET data provider.

OleDb

The OLE DB data provider.

Xmla

The XMLA data access standard.

#Remarks

XRPivotGrid can use one of the following data providers to communicate with the Microsoft Analysis Services server.

  • OLE DB for OLAP

    Provides basic OLAP binding capabilities.

  • ADOMD.NET

    Offers certain performance gains when compared to OLE DB, and yet allows you to retrieve OLAP member format strings and properties from the server.

  • XMLA

    An open XML-based standard that does not require any data access libraries or data providers to be installed on the client system. Nevertheless, it supports all OLAP features available in OLE DB and ADOMD.NET.

The default data provider for Pivot Grid is OLE DB.

See Also