Example E2986
Visible to All Users

Pivot Grid for Web Forms - How to Create and Bind Pivot Grid to Data in Code

This example demonstrates how to create a Pivot Grid and bind it to data via code.

In this example, the ASPxPivotGrid and SqlDataSource instances are created and initialized in code.

Assign the SqlDataSource instance to the ASPxPivotGrid.DataSource property to bind the Pivot Grid to data. Then call the ASPxPivotGrid.RetrieveFields method to generate DataSourceColumnBinding objects for each Pivot Grid field.

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

ASPxPivotGrid_RuntimeDataBinding/Default.aspx
ASPx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="ASPxPivotGrid_RuntimeDataBinding._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"/> </body> </html>
ASPxPivotGrid_RuntimeDataBinding/Default.aspx.cs(vb)
C#
using System; using System.Web.UI; using System.Web.UI.WebControls; using DevExpress.Web.ASPxPivotGrid; using DevExpress.XtraPivotGrid; using System.Linq; namespace ASPxPivotGrid_RuntimeDataBinding { public partial class _Default : Page { //private AccessDataSource ds; private SqlDataSource ds; private ASPxPivotGrid ASPxPivotGrid1; protected override void OnLoad(EventArgs e) { base.OnLoad(e); // Initializes a data source. ds = new SqlDataSource("System.Data.OleDb","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\\nwind.mdb", "SELECT [CategoryName], [ProductName], [ProductSales], [ShippedDate] FROM [ProductReports]"); // Initializes ASPxPivotGrid. ASPxPivotGrid1 = new ASPxPivotGrid(); ASPxPivotGrid1.OptionsData.DataProcessingEngine = PivotDataProcessingEngine.Optimized; // Binds ASPxPivotGrid to the data source. ASPxPivotGrid1.DataSource = ds; // Places the Pivot Grid onto a page. form1.Controls.Add(ASPxPivotGrid1); if (ASPxPivotGrid1.Fields.Count != 0) return; // Creates Pivot Grid fields for all data source columns. ASPxPivotGrid1.RetrieveFields(); // Locates the Pivot Grid fields in appropriate areas. ASPxPivotGrid1.Fields["CategoryName"].Area = PivotArea.RowArea; ASPxPivotGrid1.Fields["ProductName"].Area = PivotArea.RowArea; ASPxPivotGrid1.Fields["ShippedDate"].Area = PivotArea.ColumnArea; ASPxPivotGrid1.Fields["ProductSales"].Area = PivotArea.DataArea; (ASPxPivotGrid1.Fields["ShippedDate"].DataBinding as DataSourceColumnBinding).GroupInterval = PivotGroupInterval.DateYear; } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.