Unplanned
Last Updated: 12 Jun 2025 12:33 by Miria
Created by: Miria
Comments: 0
Category: Reporting
Type: Feature Request
5
Please add support for the newly released Angular 20 for both of the Angular Report Viewers.
Unplanned
Last Updated: 17 Jun 2025 16:30 by ADMIN
Created by: Paul
Comments: 1
Category: Reporting
Type: Feature Request
0

Having the ability to be able to set properties of the HTML5 report viewer globally would be a nice addition. This functionality already exists for other controls and it would have saved me lots of work when I needed to set a template url to over 50 pages.

Hopefully this gets implemented and saves someone else some of their time and if so, your welcome :)

Unplanned
Last Updated: 10 Jun 2025 14:46 by Joshua

I have a main report - "MainReport.trdp" and a report that I use in the detail section of the main report as a subreport twice - "SubReport.trdp".

In "SubReport.trdp", I have a report parameter whose value I use in one of the calculated fields in its data source component.

The calculated field's expression is evaluated based on the report parameter value passed with the SubReport's ReportSource object of the first SubReport item for both subreports.

For example, if I pass the string "A" to the first subreport's parameter and the string "B" to the second, the calculated field in both instances will evaluate based on the first value, in this case -  "A".

The second subreport should evaluate the calculated field based on the value passed to its report parameter, it should not matter if I have the same report rendered as a subreport multiple times and whether a different parameter value is passed to them.

 

Unplanned
Last Updated: 10 Jun 2025 15:27 by ADMIN
Created by: Christos
Comments: 1
Category: Reporting
Type: Bug Report
0

In version 19.1.25.521, I am updating the report source of the viewer immediately after calling $("#reportViewer1").telerik_ReportViewer. This now results in an error:

TypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator))

In previous versions, it used to work.

Completed
Last Updated: 20 Nov 2025 08:52 by ADMIN
Release 19.3.25.1119

I have created a report parameter that accepts null as a value(AllowNull=True) and have set null as the default value by using the expression =Null on the Value property of the report parameter.

This report parameter also has a data source assigned to it so it has available values. Here is a look at the full setup:

When I call the "getReportParameters()" function on the HTML5 Report Viewer, there is an exception thrown in the console that looks as follows:

telerikReportViewer:1 Error: The available values of parameter Parameter1 do not contain Value property that equals null
    at Ae (telerikReportViewer:1:45529)
    at Object.getReportParameters (telerikReportViewer:1:38265)
    at Object.getReportParameters (telerikReportViewer:1:108469)
    at <anonymous>:1:50

 

Unplanned
Last Updated: 06 Jun 2025 11:17 by William
Created by: William
Comments: 0
Category: Reporting
Type: Feature Request
0

If you embed an iframe that points to a report viewer on a page, and the page is hosted on a web server on a different origin, the print functionality does not work.

 

Consider implementing a workaround to enable it.

Unplanned
Last Updated: 05 Jun 2025 13:43 by William
I have a report with a textbox that displays a date. The width of the textbox is big enough to fit the date on one line, and it does so with GDI, however, when using Skia graphics engine - part of the text is wrapped on the next line despite there seemingly being enough space to fit the content:



The above image is from testing in HTML5Interactive rendering with Skia on Windows.
Completed
Last Updated: 17 Jul 2025 07:51 by ADMIN
Release 2025 Q3

Hi

Currently, when referencing an assembly from appsettings.json in telerikReporting:assemblyReferences  , the Object Data Source wizard in Telerik Web Reporting displays all namespaces from that assembly, even if only one class is marked with [DataObject]. This results in unnecessary namespace clutter and can confuse report designers, especially in large projects where only a single data object is intended for reporting. See screenshots below:


Please provide a way to control which namespaces and/or classes are visible in the Object Data Source wizard. Possible solutions could include:
•    Only displaying namespaces that contain [DataObject] classes (filtering namspaces with no elments to display)
•    Allowing explicit inclusion/exclusion of namespaces or classes via configuration (e.g., in appsettings.json).
•    Supporting an attribute (such as [Browsable(false)] or a new custom attribute) to hide specific classes or namespaces from the wizard UI.

Thank you for considering this improvement!

Won't Fix
Last Updated: 09 Oct 2025 14:27 by ADMIN
Scheduled for 2025 Q4

I am rendering reports locally using the report processor. When I use the RenderReport method after processing MS Office Documents and PDF files with the Spire. Office, it causes the text of the report rendered with Telerik Reporting to get truncated:

using Telerik.Reporting;

Spire.Doc.Document document = new Spire.Doc.Document();

var wordDocPath = "./wordtest.docx";
var pdfFilePath = System.IO.Path.Combine("../../../", "wordtest.pdf");

document.LoadFromFile(wordDocPath);

Spire.Doc.ToPdfParameterList toPdf = new Spire.Doc.ToPdfParameterList();
//toPdf.AutoFitTableLayout = true;
document.SaveToFile(pdfFilePath, toPdf);
document.Close();

var reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
var reportPackager = new ReportPackager();

string sourceReportFile = "./Static Broken CSU Analysis.trdp"; ;

using (var sourceStream = System.IO.File.OpenRead(sourceReportFile))
{
    var report = (Report)reportPackager.UnpackageDocument(sourceStream);

    var deviceInfo = new System.Collections.Hashtable();

    var reportSource = new InstanceReportSource();

    reportSource.ReportDocument = report;

    Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", reportSource, deviceInfo);


    if (!result.HasErrors)
    {
        string fileName = result.DocumentName + "." + result.Extension;
        string filePath = System.IO.Path.Combine("../../../", fileName);

        using (System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
        {
            fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
        }
    }
}

If I comment out the section that is converting the totally unrelated word file to pdf and run it again, it does not clip.

Completed
Last Updated: 17 Jul 2025 07:51 by ADMIN
Release 2025 Q3
The approach explained in Custom Parameter Editors in the HTML5 Report Viewer is no longer working in Reporting version 2025 Q2 (19.1.25.521).
Unplanned
Last Updated: 03 Jun 2025 10:50 by Broderick
I’m working on a project that requires generating Section 508-compliant PDFs, and I’m using Telerik Reporting to build the accessible reports. However, I’ve run into a problem with how screen readers—specifically NVDA—are interpreting table content.
As soon as I set an AccessibleDescription on a cell (especially the first cell in a row), NVDA stops reading the rest of the row. It seems like the table reading order is broken, and the screen reader exits the table structure or skips over the remaining cells to go to the next row.
This is obviously a problem for users relying on screen readers, and I’m not sure how to fix it. Has anyone else dealt with this in Telerik Reporting, or know a workaround to make screen readers read both the custom alt text and maintain proper row navigation?
Unplanned
Last Updated: 03 Jun 2025 10:41 by Broderick

I’m working on a project that requires generating Section 508-compliant PDFs, and I’m using Telerik Reporting to build the accessible reports. However, I’ve run into a problem with how screen readers—specifically NVDA—are interpreting table content.

In my report’s table, some values like 12/01/2023 aren’t being read as dates, and values like (192,340.00)—which represent negative numbers—aren’t being interpreted as “negative” or addressing the parenthesis.

Completed
Last Updated: 17 Jul 2025 07:51 by ADMIN
Release 2025 Q3
Bidirectional text containing "٪" next to a number in right-to-left cultures is not rendered correctly using SKIA graphics engine.
Completed
Last Updated: 17 Jul 2025 07:51 by ADMIN
Release 2025 Q3
Bidirectional text starting with a dot (".") in right-to-left cultures is not rendered correctly using SKIA graphics engine.
Unplanned
Last Updated: 28 May 2025 12:54 by Hatef

We have reports rendered through the Native Blazor Report Viewer.

 

Consider adding a file attachment option in the Send Email dialog for report viewers.

Unplanned
Last Updated: 30 May 2025 12:20 by ADMIN
Scheduled for 2025 Q3

With the 2025 Q2 release, the 3-parameter AddTelerikReporting static method was replaced with a 4-parameter method containing an additional argument for the optional AIClientFactory method of the REST Service.

The original method should be returned to avoid breaking projects that do not implement an AIClientFactory.

Unplanned
Last Updated: 02 Jun 2025 06:06 by ADMIN
Indeed, the Telerik.Reporting.WebServiceDataSource depends on the following packages, as seen in its nuspec file:
<dependencies>
  <group targetFramework=".NETFramework4.6.2">
    <dependency id="Newtonsoft.Json" version="13.0.1" />
    <dependency id="Telerik.Reporting" version="[19.0.25.313]" />
    <dependency id="Microsoft.Net.Http" version="2.2.29" />
  </group>
  <group targetFramework=".NETStandard2.0">
    <dependency id="Newtonsoft.Json" version="13.0.1" />
    <dependency id="Telerik.Reporting" version="[19.0.25.313]" />
  </group>
</dependencies>

The package "Microsoft.Net.Http" is with the latest available version and depends on:

Microsoft.Bcl (>= 1.1.10)
Microsoft.Bcl.Build (>= 1.0.14)

The package "Microsoft.Bcl" is indeed deprecated.

Completed
Last Updated: 17 Jul 2025 07:51 by ADMIN
Release 2025 Q3
When exporting to XLSX, all cells have a white background color even though all my report items have a transparent background. In this scenario, I want to see Excel's gridlines so the cells should be transparent, just like they are in the XLS export.
Unplanned
Last Updated: 23 May 2025 07:08 by Slawomir

I am using the Blazor wrapper of the web report designer.

 

When i first time after running my blazor app visit page with WebReportDesigner everything works as intended:

but when i exit and revisit it later this is a result:

 

Unplanned
Last Updated: 22 May 2025 08:10 by ADMIN
Scheduled for 2025 Q3
Created by: Xorcist
Comments: 1
Category: Reporting
Type: Feature Request
1

Is it possible to get descriptive information exposed for the ReportsControllerBase swagger endpoints? do they exist?

Notice how the About and files endpoints have information next to them:

Like-wise how the files endpoint has descriptive parameters: