Ready to get started?

Download a free trial of the Adobe Analytics Data Provider to get started:

 Download Now

Learn more:

Adobe Analytics Icon Adobe Analytics ADO.NET Provider

Rapidly create and deploy powerful .NET applications that integrate with Adobe Analytics data including Metrics, Users, Reports, Segments, and more!

DataBind Adobe Analytics Data to the DevExpress Data Grid



Use the CData ADO.NET Provider for Adobe Analytics with the DevExpress Windows Forms and Web controls to provide Adobe Analytics data to a chart.

The ADO.NET Provider for Adobe Analytics by CData incorporates conventional ADO.NET data access components compatible with third-party controls. You can adhere to the standard ADO.NET data binding procedures to establish two-way access to real-time data through UI controls. This article will demonstrate the utilization of CData components for data binding with DevExpress UI Controls (Windows Forms and Web controls), specifically binding to a chart that visualizes live data.

Adobe Analytics uses the OAuth authentication standard. To authenticate using OAuth, you will need to create an app to obtain the OAuthClientId, OAuthClientSecret, and CallbackURL connection properties. See the "Getting Started" section of the help documentation for a guide.

Retrieving GlobalCompanyId

GlobalCompanyId is a required connection property. If you do not know your Global Company ID, you can find it in the request URL for the users/me endpoint on the Swagger UI. After logging into the Swagger UI Url, expand the users endpoint and then click the GET users/me button. Click the Try it out and Execute buttons. Note your Global Company ID shown in the Request URL immediately preceding the users/me endpoint.

Retrieving Report Suite Id

Report Suite ID (RSID) is also a required connection property. In the Adobe Analytics UI, navigate to Admin -> Report Suites and you will get a list of your report suites along with their identifiers next to the name.

After setting the GlobalCompanyId, RSID and OAuth connection properties, you are ready to connect to Adobe Analytics.

Windows Forms Controls

The code below shows how to populate a DevExpress chart with Adobe Analytics data. The AdobeAnalyticsDataAdapter binds to the Series property of the chart control. The Diagram property of the control defines the x- and y-axes as the column names.

using (AdobeAnalyticsConnection connection = new AdobeAnalyticsConnection( "GlobalCompanyId=myGlobalCompanyId; RSID=myRSID; OAuthClientId=myOauthClientId; OauthClientSecret=myOAuthClientSecret; CallbackURL=myCallbackURL;")) { AdobeAnalyticsDataAdapter dataAdapter = new AdobeAnalyticsDataAdapter( "SELECT Page, PageViews FROM AdsReport WHERE City = 'Chapel Hill'", connection); DataTable table = new DataTable(); dataAdapter.Fill(table); DevExpress.XtraCharts.Series series = new DevExpress.XtraCharts.Series(); chartControl1.Series.Add(series); series.DataSource = table; series.ValueDataMembers.AddRange(new string[] { "PageViews" }); series.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Qualitative; series.ArgumentDataMember = "Page"; series.ValueScaleType = DevExpress.XtraCharts.ScaleType.Numerical; chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False; ((DevExpress.XtraCharts.SideBySideBarSeriesView)series.View).ColorEach = true; }

Web Controls

The code below shows how to populate a DevExpress Web control with Adobe Analytics data. The AdobeAnalyticsDataAdapter binds to the Series property of the chart; the Diagram property defines the x- and y-axes as the column names.

using DevExpress.XtraCharts; using (AdobeAnalyticsConnection connection = new AdobeAnalyticsConnection( "GlobalCompanyId=myGlobalCompanyId; RSID=myRSID; OAuthClientId=myOauthClientId; OauthClientSecret=myOAuthClientSecret; CallbackURL=myCallbackURL;")) { AdobeAnalyticsDataAdapter AdobeAnalyticsDataAdapter1 = new AdobeAnalyticsDataAdapter("SELECT Page, PageViews FROM AdsReport WHERE City = 'Chapel Hill'", connection); DataTable table = new DataTable(); AdobeAnalyticsDataAdapter1.Fill(table); DevExpress.XtraCharts.Series series = new Series("Series1", ViewType.Bar); WebChartControl1.Series.Add(series); series.DataSource = table; series.ValueDataMembers.AddRange(new string[] { "PageViews" }); series.ArgumentScaleType = ScaleType.Qualitative; series.ArgumentDataMember = "Page"; series.ValueScaleType = ScaleType.Numerical; ((DevExpress.XtraCharts.SideBySideBarSeriesView)series.View).ColorEach = true; }