Telerik Forums
Reporting Forum
1 answer
7 views

Dear Telerik Support Team,

I am reaching out to request technical assistance regarding the implementation of a "Terms and Conditions" section that should function as a completely independent additional page at the end of my report.

Current Report Structure: My main report includes Page HeaderDetail, and Page Footer (containing total calculations) sections.

Current Configuration (Attempted without success): To force the legal text into an independent final page, I have configured the following:

  • Section used: ReportFooterSection to contain the legal text.

  • PageBreak Property: Set to Before.

  • Text Component: HtmlTextBox with CanGrow set to True.

  • KeepTogether Property: I have tested both True and False settings.

Persistent Issues: Despite these settings, the text is not being isolated correctly:

  • Section Merging: The long text starts rendering immediately after the Details section on the main page, ignoring the page break or fragmenting erratically.

  • Page Footer Conflict: The Page Footer elements (invoice totals and page numbers) from the main invoice continue to print on the pages where the legal text appears, causing visual overlaps.

Questions for the Support Team:

  1. What is the cleanest way to add this final page? Given the standard report flow, how can I insert this block so it "breaks" the flow and takes over a full page without inheriting the layout (Header/Footer) of the previous pages?

  2. Conditional Visibility Control: How do you recommend hiding the Page Header and Page Footer specifically on these final "Terms" pages?

  3. Report Architecture: For text that spans one or more full pages, is it better to continue using the ReportFooterSection, or would you recommend using a SubReport or a Group Footer without a grouping expression?

Special Request: I have attached my report definition file (.trdp). Could you please review my current structure and modify the attached report using the most robust configuration to solve this behavior?

Marcel
Top achievements
Rank 1
Iron
 answered on 12 Feb 2026
0 answers
8 views
Dear Telerik Support Team,

I am reaching out to request technical assistance regarding the implementation of a "Terms and Conditions" section that should function as a completely independent additional page at the end of my report.

Current Report Structure: My main report includes Page Header, Detail, and Page Footer (containing total calculations) sections.

Current Configuration (Attempted without success): To force the legal text into an independent final page, I have configured the following:
  • Section used: ReportFooterSection to contain the legal text.
  • PageBreak Property: Set to Before.
  • Text Component: HtmlTextBox with CanGrow set to True.
  • KeepTogether Property: I have tested both True and False settings.
Persistent Issues: Despite these settings, the text is not being isolated correctly:
  • Section Merging: The long text starts rendering immediately after the Details section on the main page, ignoring the page break or fragmenting erratically.
  • Page Footer Conflict: The Page Footer elements (invoice totals and page numbers) from the main invoice continue to print on the pages where the legal text appears, causing visual overlaps.
Questions for the Support Team:

  1. What is the cleanest way to add this final page? Given the standard report flow, how can I insert this block so it "breaks" the flow and takes over a full page without inheriting the layout (Header/Footer) of the previous pages?
  2. Conditional Visibility Control: How do you recommend hiding the Page Header and Page Footer specifically on these final "Terms" pages?
  3. Report Architecture: For text that spans one or more full pages, is it better to continue using the ReportFooterSection, or would you recommend using a SubReport or a Group Footer without a grouping expression?

Special Request: I have attached my report definition file (.trdp). Could you please review my current structure and modify the attached report using the most robust configuration to solve this behavior?


Marcel
Top achievements
Rank 1
Iron
 asked on 12 Feb 2026
1 answer
17 views

Hello,

I have the following scenario and would like guidance on how to achieve the desired behavior.

I have a panel that contains:

  • some common elements (for example, a title and metadata textboxes), and

  • an outer list, which itself contains an inner list.

The data source has the following structure (simplified):

[
  [
    { "Text": "exampleText1", "Value": 1 },
    { "Text": "exampleText2", "Value": 2 },
    { "Text": "exampleText3", "Value": 3 }
  ],
  [
    { "Text": "exampleText21", "Value": 1 },
    { "Text": "exampleText22", "Value": 2 },
    { "Text": "exampleText23", "Value": 3 }
  ]
]

The outer list is bound to the main data source.
The inner list uses a data source binding like:

DataSource = Fields.Item

The panel that contains the lists also includes common elements (title, metadata) that should only be visible when there is data.

The issue I am facing is related to visibility:
I would like to hide the entire panel (including the common elements) when there are no elements at all in the data structure (for example, when the outer list is empty or when it does not contain any inner items).

I have already tried the following approach:

  • creating a report parameter bound to the data source,

  • attempting to evaluate a condition such as Count(Fields.Item) > 0,

  • setting the parameter to true or false based on that condition,

  • and then binding the panel’s Visible property to this parameter.

However, I was not able to make this approach work as expected.

Could you please advise on the recommended way to detect this condition and properly control the panel’s visibility in this scenario?

Thank you in advance for your help.

Best regards,
Balazs

Petar
Telerik team
 answered on 29 Jan 2026
1 answer
119 views

Hello.
I am using ASP.NET Framework, and in the Telerik.Reporting.Graph section I have a chart that is populated by a stored procedure.
The output of my stored procedure has three columns: DayOfMonthProductionType, and Value, and it is structured as follows.

DayOfMonth ProductionType Value
1 Staple 1244
1 SumAll 3066.2
1 Tow 1822.2
2 Staple 624.9
2 SumAll 3984.6
2 Tow 3359.7
3 Staple 1865.38
3 SumAll 5126.18
3 Tow 3260.8

ProductionType has three values: TowStaple, and SumAll.

I need SumAll to be displayed as a line chart, and Tow and Staple to be displayed as bar (column) charts within the same chart.
DayOfMonth should be displayed horizontally on the X-axis and represent the days of the month.

No matter how much I tried, I could not limit the ProductionType values in the line chart using the filters in:

  • series < lineSeries1 < GraphGroup < Filters
  • series < SeriesGroup < Filters

so that only ProductionType = SumAll is shown in the line chart.

The only place where I managed to apply this filter was in:

  • Data < SeriesGroup < Filters

but that filters the entire dataset, causing the bar chart to be filtered as well.

Please help me with this issue.
A sample of my code is attached.

Thank you.

 

0 answers
68 views
I laid out in the detail section a form that will be physically printed and I just need the number from the database to appear in the upper right. My goal is for the form to repeat for every row in the database. Currently a table with the database put in the upper right shows all the values in the table and it pushes everything below it down page.
Lawrence
Top achievements
Rank 1
 asked on 03 Dec 2025
1 answer
53 views

I understand that licensing terms for Telerik Reporting have recently changed.

Does this change affect distribution of the Report Designer? I have not found any reference to that in the documentation.  Based on what I had read in your forums, documentation, and blogs in the past, the Report Designer was freely distributable.  I would have expected any change to be reflected in your Licensing FAQ.

Thank you for your clarification.

Best regards, 
Mark

Ivet
Telerik team
 answered on 26 Nov 2025
1 answer
54 views

I have a report with all of the content in a  group header section, all of which fits nicely on one page with one problem. I have a subreport in the content shown here on the designer;

The Subreport is a simple name list with just a detail section (no headers - the waring is that it's not full page width and will be extended horizontally - not what I want, but OK...);

However, it renders like this;

I.e. With a page break before it, with the sub report object (Green) from the main report expanding to full page height, then another page break afterwards and then the rest of the content

I've checked all of the page break settings and they're all set to none - anyone seen anything similar?

 

Richard
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 30 Oct 2025
3 answers
71 views

Hi,

after installation of Telerik Reporting (with examples option checked) I got installed AdventureWorks database, but it is empty and I can't run any example report without data.

Where can I get backup of AdventureWorks database with data ?

0 answers
51 views

Good Morning,

i get empty pages in word from processing from telerik designer

Peter
Top achievements
Rank 1
 asked on 23 Sep 2025
1 answer
47 views
Hi I am using telerik report in web forms. we have implement it is from physical file i..e report definition  is present in SQL columns. will be modified at runtime and save a file in temp path. and set in to report viewer.

in c# 
 var clientReportSource = new Telerik.ReportViewer.Html5.WebForms.ReportSource();
 clientReportSource.IdentifierType = IdentifierType.UriReportSource;
 clientReportSource.Identifier = strXml;

how it can be used in in-memory or  without using physical file as references.
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?