Skip to main content
All docs
V23.2

Create a Report with a Subreport (Runtime Sample)

  • 5 minutes to read

This topic demonstrates how to create a report that contains an XRSubreport control at runtime.

Create a Main Report and Assign a Data Source

The following code creates a report with data from the Northwind database grouped by the Category field. The XRSubreport control is located in the Group Footer band. The XRSubreport.ReportSource property specifies the report instance that the XRSubreport control renders.

For more information on report bands, review the following help topic: Introduction to Banded Reports.

using System;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraReports.UI;
using DevExpress.DataAccess.Sql;
using DevExpress.DataAccess.ConnectionParameters;
using DevExpress.XtraPrinting;
using DevExpress.XtraCharts;
using DevExpress.XtraReports.Parameters;
// ...
private XtraReport CreateMainReport() {
    XtraReport report = new XtraReport() {
        Bands = {
            new GroupHeaderBand() {
                GroupFields = {
                    new GroupField("CategoryID")
                },
                Controls = {
                    new XRLabel() {
                        ExpressionBindings = {
                            new ExpressionBinding("BeforePrint", "Text", "[CategoryName]")
                        },
                        BoundsF = new RectangleF(0,0,300,25),
                        Font = new Font(new FontFamily("Arial"),12,FontStyle.Bold)
                    },
                    new XRLabel() {
                        ExpressionBindings = {
                            new ExpressionBinding("BeforePrint", "Text", "[Description]")
                        },
                        BoundsF = new RectangleF(0,50,300,25),
                        Font = new Font(new FontFamily("Arial"),9)
                    },
                    new XRPictureBox() {
                        ExpressionBindings = {
                            new ExpressionBinding("BeforePrint", "ImageSource", "[Picture]")
                        },
                        BoundsF = new RectangleF(500,0,150,50),
                        Sizing = ImageSizeMode.ZoomImage
                    },
                    new XRLabel() {
                        Text = "Product Name",
                        BoundsF = new RectangleF(50,100,400,25),
                        Font = new Font(new FontFamily("Arial"),9,FontStyle.Bold)
                    },
                    new XRLabel() {
                        Text = "Qty Per Unit",
                        BoundsF = new RectangleF(450,100,100,25),
                        Font = new Font(new FontFamily("Arial"),9,FontStyle.Bold)
                    },
                    new XRLabel() {
                        Text = "Unit Price",
                        BoundsF = new RectangleF(550,100,100,25),
                        TextAlignment = TextAlignment.TopRight,
                        Font = new Font(new FontFamily("Arial"),9,FontStyle.Bold)
                    },
                }
            },
            new DetailBand() {
                Controls = {
                    new XRLabel() {
                        ExpressionBindings = {
                            new ExpressionBinding("BeforePrint", "Text", "[ProductName]")
                        },
                        BoundsF = new RectangleF(50,0,400,25),
                        Font = new Font(new FontFamily("Arial"),9)
                    },
                    new XRLabel() {
                        ExpressionBindings = {
                            new ExpressionBinding("BeforePrint", "Text", "[QuantityPerUnit]")
                        },
                        BoundsF = new RectangleF(450,0,100,25),
                        Font = new Font(new FontFamily("Arial"),9)
                    },
                    new XRLabel() {
                        ExpressionBindings = {
                            new ExpressionBinding("BeforePrint", "Text", "[UnitPrice]")
                        },
                        BoundsF = new RectangleF(550,0,100,25),
                        Font = new Font(new FontFamily("Arial"),9),
                        TextAlignment = TextAlignment.TopRight,
                        TextFormatString = "{0:c2}"
                    }
                },
                HeightF = 25
            },
            new GroupFooterBand() {
                Controls = {
                    new XRSubreport(){
                        ReportSource = CreateSubReport(),
                        GenerateOwnPages = true,
                        ParameterBindings = {
                            new ParameterBinding("subreportCategory",null,"Products.CategoryID")
                        }
                    }
                },
                PageBreak = PageBreak.BeforeBand
            }
        },
        DataSource = CreateDataSource(),
        DataMember = "Products"
    };
    return report;
}

Create a Subreport

The following code creates a report assigned to the ReportSource property of the XRSubreport control located in the main report.

The report includes the XRChart control that displays data related to the current group in the main report.

using System;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraReports.UI;
using DevExpress.DataAccess.Sql;
using DevExpress.DataAccess.ConnectionParameters;
using DevExpress.XtraPrinting;
using DevExpress.XtraCharts;
using DevExpress.XtraReports.Parameters;
// ...
private XtraReport CreateSubReport() {
    XtraReport report = new XtraReport()
    {
        Bands = {
            new DetailBand() {
                Controls = {
                    new XRChart(){
                        BoundsF = new RectangleF(0,0,900,650),
                        DataMember = "Products",
                        Series = {
                            new Series(){
                                ArgumentDataMember = "ProductName"
                            }
                        }
                    }
                }
            }
        },
        Parameters = {
            new Parameter(){
                Name = "subreportCategory",
                Type = typeof(System.Int32)
            }
        },
        Landscape = true,
        DataSource = CreateDataSource(),
    };
    var chart = report.Bands[0].Controls[0] as XRChart;
    chart.Parameters.Add(new XRControlParameter("chartCategory", report.Parameters[0]));
    chart.Series[0].FilterString = "CategoryID=?chartCategory";
    chart.Series[0].ValueDataMembers.AddRange(new string[] { "UnitPrice"});
    return report;
}

Result

The resulting report is shown in the picture below. It contains a table and a chart for each category.

Report with Subreport Containing Chart at Runtime

View Example: Use Subreports to Add a Chart