Unplanned
Last Updated: 13 Aug 2025 17:29 by Daniel

Currently, the desktop viewers don't allow adding custom headers to their requests to the service.
In HTML5-based web viewers, this is possible through the AjaxPrefilter event.

Unplanned
Last Updated: 13 Aug 2025 10:31 by Curt
I have 2 Date parameters on my report. The "Start Date" parameter defaults to today, and the "End Date" defaults to the "Start Date" + 1 Year.

This works fine in the Report Designer, e.g., when the Start Date is changed in preview mode, the End Date value is recalculated.

However, this behavior does not work in the Blazor Native Report Viewer.  When the page first renders, the two dates are shown correctly, but if the Start Date is changed, the End Date is not recalculated.
Unplanned
Last Updated: 08 Aug 2025 14:54 by Curt

My use case is a multi-select parameter that is based on a dataset; and the dataset is filtered by 2 other parameters.

The dependent parameter editor is shown as a SpinButton rather than a multi-select editor in the Blazor Native Report Viewer:

Unplanned
Last Updated: 08 Aug 2025 11:28 by ADMIN
Scheduled for 2025 Q4

When exporting a report to Excel with the UseExtendedFormatting parameter set to False, the Standard DateTime Format Strings are hard coded as custom formats in the generated XLS/XLSX document.

The custom formats correspond to the current regional settings or, if the report is rendered with a specific culture, the default date format strings for the selected culture.  

Unplanned
Last Updated: 08 Aug 2025 10:52 by ADMIN

While customising templates/CSS, I noticed the .trv-parameters-wrapper div as follows:

<div tabindex="300" class="trv-parameters-wrapper" aria-label="Parameters area. Contains 4 parameters.">
<div class="trv-parameter-container k-card"></div>
</div>
The report being tested had 1 visible and 3 invisible parameters and one .trv-parameter-container is rendered. Counting 4 being contained in the "Parameters area" does not appear to be too helpful.
Unplanned
Last Updated: 05 Aug 2025 19:48 by ADMIN

Hi Team,

Currently, the DatabaseCacheConfigurator.exe tool seems to be Windows-only. Can you please compile this to be cross platform compatible? I am on macOS and cannot use any Windows tooling.

Thank you,

Frank

Unplanned
Last Updated: 04 Aug 2025 09:00 by ADMIN
Scheduled for 2025 Q4

We use WPF Report Viewer in our application. For testing, validation, and automation purposes, we need to:

  • Uniquely identify each element in the XAML rendered report contents to support automation.
  • Prevent the element ID changes. The generated item IDs must remain consistent as long as the report definition is not changed.

Unplanned
Last Updated: 01 Aug 2025 08:11 by Peter

If I set the ReportSource to the Native Blazor Report Viewer using @bind directive, for example:

@bind-ReportSource="@ReportSource"
It works as expected. However, if I try to do it without a binding, for example:

ReportSource="@(new ReportSourceOptions { ... })"

It causes the viewer to go into a loop of trying to set the ReportSource, and it never renders the report.

Unplanned
Last Updated: 31 Jul 2025 07:39 by ADMIN
Scheduled for 2025 Q4
If you try to add a new selector in a new or existing StyleRule in the WebReportDesigner, a new TypeSelector gets added automatically rather than letting you choose from the list of the available selectors.
Unplanned
Last Updated: 30 Jul 2025 08:49 by ADMIN

Hi Team,

I have a request for being able to add the `User-Agent` header to reporting calls. We've ran into some image hosting sites that will not resolve image links properly if the user-agent is not present in the request and returns a 403 Forbidden error. Any browser that passes the user-agent parameter can resolve this link.

https://cms5.revize.com/revize/cityofwillmar/_assets_/images/logo.png

But telerik will return this error:

Telerik.ReportDesigner.exe Error: 0 : An exception has occurred while processing 'pictureBox1' item:
System.Net.WebException: The remote server returned an error: (403) Forbidden.
   at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request)
   at System.Net.WebClient.DownloadData(Uri address)
   at Telerik.Reporting.Processing.Imaging.ImageUtils.LoadData(String filePath)
   at Telerik.Reporting.Processing.Imaging.UrlImageItem.CreateUnderlyingImageItem()
   at Telerik.Reporting.Processing.Imaging.UrlImageItem.get_UnderlyingImageItem()
   at Telerik.Reporting.Processing.Imaging.UrlImageItem.CreateImageInfo()
   at Telerik.Reporting.Processing.Imaging.IImageInfoMapExtensions.StoreImageData(IImageInfoMap imageInfoMap, IImageItem imageItem, ICache cache)
   at Telerik.Reporting.Processing.PictureBox.ResolveImage(Object value)
   at Telerik.Reporting.Processing.ReportItemBase.ProcessElement()
   at Telerik.Reporting.Processing.ProcessingElement.Process(IDataMember dataContext)

Currently, the only way around this is to fetch the images with a custom user function and returns the images to the Reporting Engine as a byte array or other supported format. It's a lot of overhead for something that could simply be toggled on an off, so I think this would be a nice feature addition. 

Thanks,
J.T.

Unplanned
Last Updated: 28 Jul 2025 12:00 by ADMIN
Scheduled for 2025 Q3

If I set both the "EnableAccessibility" and "ViewerRenderToolTips" device info settings to true, the generated PDF document is corrupted.

Unplanned
Last Updated: 24 Jul 2025 12:54 by n/a
Consider enabling WPF elements to be uniquely and reliably identified in WPFXAML/WPFXAMLInteractive rendering using properties such as Name, AutomationId, or custom identifiers, to improve support for UI automation, testing, and runtime inspection tools.
Unplanned
Last Updated: 23 Jul 2025 15:15 by ADMIN
Scheduled for 2025 Q3

White space appears between different rows. Depending on the zoom level it could happen on one or more rows.

I will attach a report example to this message.

Unplanned
Last Updated: 23 Jul 2025 15:10 by ADMIN
Scheduled for 2025 Q3
The current version(R3 2023) of the MsSqlServerStorage implementation uses the old System.Data.SqlClient data provider which forces to use a different connection string from my application because keywords such as 'authentication' are not supported by the older provider.
Unplanned
Last Updated: 23 Jul 2025 15:06 by ADMIN
Scheduled for 2025 Q3

When I drag a data field from a DataSource component to the Report details section in the Standalone Report Designer, the Report > DataSource property is set automatically to the corresponding DataSource component.

In the Web Report Designer, when I drag a data field, the Report > DataSource property remains empty, and the Preview shows an empty report. It would be very helpful the same functionality to be introduced also in the Web Designer.

Unplanned
Last Updated: 23 Jul 2025 14:53 by ADMIN
Scheduled for 2025 Q3

I have projects on .NET Core and I want to use the System.Text.Json serializer that is the new default, but reporting relies on Newtonsoft.Json.

---

ADMIN EDIT

There are two approaches that can be taken right now to solve this:

OPTION 1: define separate endpoints (services, projects) for the different tasks - they can still use the same database layer through a shared project, depending on the architecture you have. This would let you have separated services with the appropriate serializers without custom attributes and code (see below). For example, create a separate project for the reporting REST services.

OPTION 2: add some custom decoration on the endpoints so you can choose which serializer is used on each, you can find some examples here: https://stackoverflow.com/questions/59650907/how-to-configure-two-json-serializers-and-select-the-correct-one-based-on-the-ro - the point being to register a serializer depending on the endpoint based on your own code rather than let the framework put one in for all endpoints.

NOTE: This would be a breaking change.

---

Unplanned
Last Updated: 22 Jul 2025 14:26 by ADMIN
Created by: Lorenzo
Comments: 1
Type: Feature Request
1

Actually Axis title can move only on his specific axis.

For example, x-axis title can move left to right and y-axis title can move up to down.

But in same cases, like mine, where the axis are not on the edge of the chart (because it involves negative x and y values and the intersection is in the middle of the field) it is necessary to move the x-axis title up and down to be next to the x-axis position, or to move y-axis left/right to be next to the y-axis position.

Feature request: allow axis titles to be moved on both axis and not only one.

In attach you'll find a screen that shows the desired result.

Best regards

Unplanned
Last Updated: 21 Jul 2025 10:35 by ADMIN
Scheduled for 2025 Q3

Hi Support team,

On ServerSide, when using a CultureInfo, with a NumberSeperator different then '.', e.g. CultrerInfo("de-DE"), it is not possible to Save a report.

It seems it is internally converted to a string based value and gets the different seperator and than can not be casted/converted back to double.

 

Best regards

Alexander Schneider

System Development | Loy & Hutz Solutions GmbH

 

Unplanned
Last Updated: 18 Jul 2025 16:12 by Asmerom

I am using the NPM package rxjs@6.6.7 together with @progress/telerik-angular-native-report-viewer26.25.521. The latter has the following peer dependency listed in its `package.json`:

"rxjs": "^6.5.3 || ^7.4.0"

Version 6.6.7 is within this range, but when running the application, I get errors, such as:

Error: export 'take' (imported as 'take') was not found in 'rxjs

Unplanned
Last Updated: 18 Jul 2025 10:57 by ADMIN
Scheduled for 2025 Q3

My project uses the following two dependencies:

  • Telerik.UI.for.Blazor (v9.1.0)
  • Telerik.ReportViewer.BlazorNative (v19.1.25.716)

However, when I build my application and navigate to the page of the Native Blazor report viewer, the following error is thrown:

“Telerik.Blazor.Components.TelerikWindow does not have a property matching the name ‘Centered’.” at Microsoft.AspNetCore.Components.Reflection.ComponentProperties.ThrowForUnknownIncomingParameterName(Type targetType, String parameterName) at Microsoft.AspNetCore.Components.Reflection.ComponentProperties.SetProperties(ParameterView& parameters, Object target) at Microsoft.AspNetCore.Components.ParameterView.SetParameterProperties(Object target) at Microsoft.AspNetCore.Components.ComponentBase.SetParametersAsync(ParameterView parameters) at Telerik.Blazor.Components.TelerikWindow.SetParametersAsync(ParameterView parameters) at Microsoft.AspNetCore.Components.Rendering.ComponentState.SupplyCombinedParameters(ParameterView directAndCascadingParameters)

1 2 3 4 5 6