如何在Telerik报表中使用带有动态列数的表创建子报表

时间:2018-08-14 14:52:27

标签: c# telerik-reporting

我有一个使用Telerik报告制作的报告。此报告在表格中显示一个月中所有给定工作日的信息(例如2017年7月的所有星期一)。表中的列是日期,行是与日期关联的数据。

某天一个月内发生的次数不同,因此我需要能够根据请求的数据定义表所需的列数。我该怎么办?

下面是它的显示方式的模拟:

enter image description here

1 个答案:

答案 0 :(得分:1)

考虑报告名称为MainReportSubReport

MainReport中添加以下代码:

public static ReportSource SetReportSourceForSubreport(object data)
{
    var report = new SubReport(data);
    var repSource = new InstanceReportSource
    {
        ReportDocument = report
    };

    return repSource;
}

现在,通过Visual Studio报表设计器向主报表添加子报表,并将ReportSource设置为= MyNameSpace.MainReport.SetReportSourceForSubreport(Fields.Data)。确保主报告的数据源中有Data

在您的SubReport中,您现在需要一个接受数据的构造函数。首先调用InitializeComponent()方法,然后通过代码生成表,并添加所需的列和行的数量。

public SubReport(object data)
{
    InitializeComponent();

    // Create and add table to report body
    var table = CreateTable(data);
    this.detail.Items.Add(table);
}

有关如何通过代码生成表的信息,请阅读下一页和相关文章以获取详细说明。 https://docs.telerik.com/reporting/table-understanding-cells-rows-columns

有关如何使用代码生成表的小示例:

private Table CreateTable(Dictionary<string, IEnumerable<string>> data)
{
    ////
    // New table instance
    ////
    _requiredColumns = data.Count + 1;
    Table table = new Table()
    {
        Name = "tableDay",
        Docking = DockingStyle.Fill,
        Location = new PointU(Unit.Cm(0D), Unit.Cm(0D)),
        Size = new SizeU(Unit.Cm(17D), Unit.Cm(5D)),
        RowHeadersPrintOnEveryPage = true
    };

    table.Bindings.Add(new Telerik.Reporting.Binding("DataSource", "= Fields.Rows"));

    for (int i = 0; i < _requiredColumns; i++)
    {
        table.Body.Columns.Add(new TableBodyColumn(Unit.Cm(_columnWidth)));
    }

    ////
    // Add headers
    ////
    table.ColumnGroups.Add(new TableGroup
    {
        Name = "columnLeftMost",
        ReportItem = new TextBox { Name = "textBoxHours", Value = "Hours" }
    });

    foreach (var item in data)
    {
        table.ColumnGroups.Add(new TableGroup
        {
            Name = "column" + item.Key,
            ReportItem = new TextBox { Name = "textBoxTitleDay" + item.Key, Value = item.Key }
        });
    }

    ////
    // Add data rows
    ////

    var tableGroup28 = new TableGroup() { Name = "tableGroup280" };
    tableGroup28.Groupings.Add(new Telerik.Reporting.Grouping(null));
    table.RowGroups.Add(tableGroup28);

    table.Body.Rows.Add(new TableBodyRow(Unit.Cm(ROWHEIGHT)));

    List<ReportItemBase> list = new List<ReportItemBase>();

    for (int i = 0; i < _requiredColumns; i++)
    {
        var tb = new TextBox
        {
            Name = "textBox" + i,
            Value = i == 0 ? "= Fields.DayTimeFriendly" : "= Fields.RowValues"
        };

        list.Add(tb);
        table.Body.SetCellContent(0, i, tb);
    }

    table.Items.AddRange(list.ToArray());

    return table;
}