We have a Telerik HTML5 report designer integrated in a .net 4.8 MVC application . Our requirement is to design cross tab reports. Data is populated from stored procedures. Around 40 - 45 columns need to be added in the row group of cross tab. The issue is, after adding 30 columns, getting the below error message. Also it does not allow to save report.
Could not save 'Reportxxx.trdp'. An error has occurred. The reader's MaxDepth of 64 has been exceeded.
Any option to set max depth in .net 4.8?
Screenshot given below.

Hi,
We use Telerik WinUI report viewer. We need to have freezing column headers and row headers in some reports. Table Header Freezing in Detail - Telerik Reporting says how to do that in HTML5 based report viewer, but it does not work in WinUI report viewer. If there is a limitation, when the Telerik's plan to implement that functionality?
Thanks.
We have a custom report screen that uses multiple reporting frameworks to render reports as files (typically Excel). The available reports are loaded dynamically at runtime, the user picks a report which retrieves and displays the report parameters for the users to enter values, and then the report can be rendered to the file type that they choose.
We will be creating single reports (.trdp files) and report books (.trbp files) and uploading those onto the server for use with this screen. We are currently using the R1 2023 Reporting framework. Our application is written in c# and uses .NET Framework 4.8.
I have almost everything working with the Telerik framework but cannot find anywhere to create a ReportBook object from a .trbp file. The closest I found was this forum post (https://www.telerik.com/forums/reportbook-by-path-name)and this article on Deserializing from XML (https://docs.telerik.com/reporting/embedding-reports/program-the-report-definition/serialize-report-definition-in-xml). This does not work and I assume things have totally changed given the post was over 10 years old.
Using the code below gives the exception "Data at the root level is invalid. Line 1, position 1." The .trbp file that we are attempting to load was designed using the Telerik Standalone Report Designer.
var reportBook = new Telerik.Reporting.ReportBook();
using (System.IO.FileStream stream = new System.IO.FileStream(reportPath, System.IO.FileMode.Open))
{
Telerik.Reporting.XmlSerialization.ReportXmlSerializer xmlSerializer = new Telerik.Reporting.XmlSerialization.ReportXmlSerializer();
reportBook = (Telerik.Reporting.ReportBook)xmlSerializer.Deserialize(stream);
}Is it possible to load a .trbp file into a ReportBook object? If so, how?
Thanks,
Jason
How can I put the x-axis 0 exactly at the origin?
I am using the Telerik Reporting Designer inside Visual Studio 2022
Platform:
Telerik Reporting R3 2022, using Telerik for .Net
.Net Framework 4.5.2
Visual Studio 2022, 64 bit

Hello,
we've upgraded to VS2022 and .NET 7.
The reports are giving us a lot of problems, it looks like we have too rebuild them in the Standalone Report Designer. Import fails
The default Telerik WPF ReportViewer has this
<tr:ReportViewer Grid.Row="0" x:Name="ReportViewer1" HorizontalAlignment="Stretch" EnableAccessibility="true">
<tr:ReportViewer.ReportSource>
<telerikReporting:UriReportSource Uri=""/>
</tr:ReportViewer.ReportSource>
</tr:ReportViewer>
Can we change the Uri programmatically in a MVVM project? Something like
<tr:ReportViewer Grid.Row="0" x:Name="ReportViewer1" HorizontalAlignment="Stretch" EnableAccessibility="true">
<tr:ReportViewer.ReportSource>
<telerikReporting:UriReportSource Uri="{Binding ReportSource}"/>
</tr:ReportViewer.ReportSource>
</tr:ReportViewer>
where reportsource is ExampleReport.trdp
Jeroen
We have a JSON dataset where one of the nodes is a list of products. We have generated a DataSource based on this product list. Within each product node, there is an AdditionalInfos node, which is a list of data that complements each product. Find example attached.
"ProductList": {
"Product": [
{
"@Item": "Item1",
"@BeginDate": "17/05/2023",
"@Total": 253054.99,
"AdditionalInfos": {
"AdditionalInfo": [
{
"@Key": "Vehiculo",
"@Value": "MCG02"
},
{
"@Key": "Terminal",
"@Value": "TERMINAL A"
},
]
}
},
{
"@Item": "Item2",
"@BeginDate": "16/05/2023",
"@Total": 1234678.12,
"AdditionalInfos": {
"AdditionalInfo": [
{
"@Key": "Vehiculo",
"@Value": "MCG03"
},
{
"@Key": "Terminal",
"@Value": "TERMINAL B"
},
]
}
},
{
"@Item": "Item3",
"@BeginDate": "15/05/2023",
"@Total": 5646548.35,
"AdditionalInfos": {
"AdditionalInfo": [
{
"@Key": "Vehiculo",
"@Value": "MCG04"
},
{
"@Key": "Terminal",
"@Value": "TERMINAL B"
},
]
}
},
]
}
Our goal is to generate a graphical representation of the product lines grouped by the AdditionalInfo lines with the Key "Terminal." The desired output should be as follows:
Terminal AI have a Telerik Reporting project that is included in my web application solution. When the solution is built using VSBuild in the Azure DevOps pipeline, I caget the following error:
##[error]Inspire.Report\Properties\licenses.licx(1,0): Error LC0003: Unable to resolve type 'Telerik.Reporting.TextBox, Telerik.Reporting, Version=16.1.22.622, Culture=neutral, PublicKeyToken=a9d7983dfcc261be'
I've tried ignoring *.licx files and the report project but I still get this error. Any advice on how to get a Telerik Reporting project built in an Azure DevOps pipeline?

Like this:
We followed your instructions to make the reports (https://www.youtube.com/watch?v=UF1mL6vzJDs&t=738s). But I have 1 question, how do we decentralize these reports?
For example:
We have 2 reports on 2 html pages, report1.html and report2.html
We have 2 users, user_a and user_b
user_a can only access report1.html
and user_b can only access report2.html
----------------------------------------------------------------------
Microsoft Visual Studio Professional 2022 (64-bit) Framework: .NET 6 Telerik Reporting trial version 17.0.23.118 Telerik HTML5 Report Viewer Page R1 2023
----------------------------------------------------------------------
