Completed
Last Updated: 20 Feb 2017 08:34 by ADMIN
Created by: Alharith
Comments: 3
Category: Reporting
Type: Feature Request
8
It would be useful to have tooltips to graph series  so we can explain what each Series is showing.
Completed
Last Updated: 20 Sep 2021 10:23 by ADMIN
Created by: Clinton Smyth
Comments: 1
Category: Reporting
Type: Feature Request
8
We'd like to distribute the standalone report tool to our clients and provide data through a web service. We don't want to have to redistribute a dll everytime we make new data available.

The standalone report tool should be able to query our webservice for what data is available and then allow the client user to create reports from it.  i.e. obtain list of table names dynamically as well as their column names and data.

A possible solution is to allow the tool to view and interact with classes in an external assembly that are dynamically generated with Reflection.Emit.
Unplanned
Last Updated: 05 Mar 2019 08:39 by ADMIN
Created by: haitham haj
Comments: 0
Category: Reporting
Type: Feature Request
8
This is your reply to one of our questions regarding RTL support of crosstab component.
"The Crosstab item will not change its layout (does not support RTL layout flow). You will have to create to separate reports with similar layouts. One report can be used with RTL languages, and another with LTR languages.
Note that row groups can be added only on the left side of the Crosstab item. "
SO our request is to fully supports RTL.
Unplanned
Last Updated: 22 Jan 2019 12:38 by ADMIN

In general, the Page sections do not collapse or expand based on their content. Also the report header and group header sections span the width of the column.

It would be nice if, for example, have another section that either could expand/collapse based on the content and do not be affected by the report's page settings.

Completed
Last Updated: 13 Feb 2025 11:49 by ADMIN
Created by: Jeff
Comments: 3
Category: Reporting
Type: Feature Request
8
It would be nice to have Visual Studio Item Templates for Telerik Reporting REST Service and Html5 Viewer also for .NET Core projects
Unplanned
Last Updated: 21 Jan 2022 17:41 by Melinda
Created by: Raghu
Comments: 1
Category: Reporting
Type: Feature Request
8

As for now, the workaround is to use the series' DataPointStyle.BackgroundImage property to add a custom image as a marker. Then, to change this image based on the condition you can use DataPointConditionalFormatting property.

The Marker Types I am using are commonly used e.g Square, Plus, Cross. Please add an option to set Marker Type for the values instead of background Image.

Unplanned
Last Updated: 25 Jun 2019 10:09 by ADMIN
Created by: Uday
Comments: 2
Category: Reporting
Type: Feature Request
8
It will be great if the Office (Word, Excel, PowerPoint) reports generated by Telerik Reporting can be password protected.
Completed
Last Updated: 13 May 2020 13:07 by ADMIN
Release 2020 R2
Created by: Karim
Comments: 3
Category: Reporting
Type: Feature Request
8

It would be very handy, if the value property of the PictureBox would resolve images from base64 strings besides the Image, Image byte[], relative or absolute URI.
It should be fairly simple to implement. I wrote my own user function for this. It would be beneficial to have this out of the box.


[Function(Category = "Image", Namespace = "ImageFunctions", Description = "Converts a base64 string to an image byte array")]
public static byte[] ConvertFromBase64(string imageString)
{
    if (imageString != null)
    {
        // Convert base 64 string to byte[]
        byte[] imageBytes = Convert.FromBase64String(imageString);
        return imageBytes;
    }
    else
    {
        return null;
    }
}

Unplanned
Last Updated: 01 Oct 2019 13:45 by ADMIN
Created by: Tursunkhuja
Comments: 4
Category: Reporting
Type: Feature Request
8

I have scenario like this: Sam requests a product report from company A.  Marvin creates the report and send it back to Sam.  Sam imports it.  It would be best if Marvin (Author of the report) could specify all the meta data so that Sam doesn't have to enter these things.

In my case I need following metadata for the report:

  • Keyword: some external tags...
  • Description: a description so that the user can understand what this report will show and the purpose of the report.
Unplanned
Last Updated: 13 Mar 2025 09:05 by ADMIN
Created by: Jim
Comments: 9
Category: Reporting
Type: Feature Request
8

Hello,

I see from support threads that Telerik really resists any changes to their concept of CSV rendering.  And I also understand the reasoning in not changing any default behavior due to its potentially unwanted effect on established customers.

That said, I wonder if the ability to exclude hidden objects (TextBoxes for example) has been proposed and is in the list of potential enhancements.  I wouldn't mind if it required a configuration setting like NoHiddenObjects = True where the default is False.

Has that been considered?

Unplanned
Last Updated: 26 May 2020 12:30 by ADMIN
The Group Footer rows of my table are displayed thinner than the rest of the table rows in PDF rendering. However, they are designed the same as the Group Header Rows and the Detail rows.
Completed
Last Updated: 11 Nov 2021 15:51 by ADMIN
Release R3 2021 SP1
Float report parameter = 0 or negative whole number is returned as int and an exception is thrown in the viewer. The issue is observed only in .NET Core projects.
Unplanned
Last Updated: 11 Sep 2023 15:20 by ADMIN

We are using the external style sheet file (StyleSheet.xml) when designing our report from Web report designer. We want to see our style sheet applied on our report when we see the report from Web designer in design mode. In Preview mode it is working fine.  But the problem here, it is not working in Design mode.

See the attached pictures. You find our problem on the picture ExternalStyleInWebDesigner-DesignMode.PNG

Is there any solution or a feature request needs to be created?

FYI: External style sheet is working in Standalone report designer in both design and preview mode.

 

Thanks,

Unplanned
Last Updated: 14 Dec 2021 14:26 by ADMIN
I have a Crosstab with multiple dynamic detail columns and a Total column at the end. I can hide all the detail columns conditionally, based on a parameter value. The Totals are always visible. When there are more than two detail columns and I hide them, there is blank space left between the row headers and the totals of the crosstab.
Unplanned
Last Updated: 17 Feb 2022 12:16 by Vitaliy
After sending x requests, the setInterval delays for an additional 30 seconds, if the clientSessionTimeout is 1 minute. The interval is not changed, nor is it replaced with another internal. The set millisecond delay is also not changed. Generally, this happens once, the client expires, then the interval continues to send requests at the set interval.
Unplanned
Last Updated: 05 Mar 2025 15:43 by Dyan

If I put the following content in an HtmlTextBox, when I open the preview mode of the designer or look at it in the Html5 Report Viewer I get annoying extra gaps:

<p>Comment</p><p>Comment</p><ol><li>List</li><li>List</li><li>List</li></ol><p><br></p><p>Comment</p><p>Comment</p>

I tried to replace these <p>-tags with <div>-tags:

<div>Comment</div><div>Comment</div><ol><li>List</li><li>List</li><li>List</li></ol><div><br></div><div>Comment</div><div>Comment</div>

It helps. But there are some other tags that cannot be replaced (tags of ordered and unordered lists for example). And these gaps are still rendered. 

Unplanned
Last Updated: 17 Nov 2023 09:45 by ADMIN
Created by: Ron
Comments: 4
Category: Reporting
Type: Feature Request
8

Enable retaining editable textboxes when Exporting to PDF.

For example a PDF Re-order form with editable textboxes for order Quantity so the user can enter order Quantities.

Declined
Last Updated: 23 Sep 2014 13:30 by Brian Stanek
Created by: Brian Stanek
Comments: 2
Category: Reporting
Type: Feature Request
7
We use Telerik reports for many different things.  We generate reports, letters, mailings, excel documents and forms or applications.  Our applications can either be blank or pre-filled or completely filled with information from the user.  Now I realize that you can say that all of these are forms of reports, but I would submit that is only partly correct.  I tell people that Telerik reports is a way for me to produce output that can be electronically distributed or printed.  While that is a definition of a report, I think it can go a bit further.

If you think about PDF forms and what they are, they are a report that allows the user to add additional information and send back to the customer.  I do realize that some features of PDF forms allow for scripting that can automatically submit, and there is a lot of other capabilities that moves PDF forms outside the realm of basic report generation. That being said, the ability to set a parameter in a report whereas the fields are replaced with basic text input PDF fields would be a huge advantage for Telerik.  I could see them opening up the forms generation market for this product.

While I have no input into your roadmap and, as a former Product Architect for a software development firm, I fully understand scope creep and keeping product focus, I would love to see:
1) a parameter export to PDF that converts the fields (everything that has a Fields.XXXX keyword somewhere in the value property) to PDF form text fields without adding data.  I would set the length the same way you set the horizontal length of the field on the report.
2) a parameter on a field item that says this field cannot be converted into a form field and must have data.
3) a parameter on reports indicating that when generating PDF form fields, that X number of rows are generated for the detail section.
4) if a field value is too complex or if the report is too complex, I would just fail over to a blank value.
I realize there are a lot of capabilities in PDF forms, but I tried to keep my wish list confined to the basics that would allow for easy additions to support advanced capabilities post report generation.

All this being said, I have communicated to my customers that Telerik is not going to support PDF form fields and we have an upcoming meeting to discuss this requirement.  I have a lot of resources, time and money invested in the development of Telerik reports and it is a concern that I may have to remove Telerik reports from our solutions because of a need to support this PDF capability.  We have reports on multiple different platforms and I feel that Telerik Reports is one of the best in terms of use on many different styles of applications. But since I am a firm believer in using as few technology vendors as possible (and only want a single reporting solution), I am concerned about having to re-architect our solution reporting infrastructure to remove Telerik reports.
Completed
Last Updated: 08 Mar 2019 09:39 by ADMIN
Created by: Qin
Comments: 2
Category: Reporting
Type: Feature Request
7
if you can provide a default resource file of report designer, and provide the same name convention rule of the resource file, then we can translate it by ourselves.
Unplanned
Last Updated: 14 Mar 2016 14:03 by Pierre-Yann
DocumentMap is using the order of report structure to create the tree. For the moment, the only way to change this order is using "Bring To Front/Send To Back" in report designer, which is badly named in this case, and awkward to use.

You should:
-add Bring Forward/Bring Backward functions
-document in DocumentMap help section that theses functions will also change the order in the report structure.

Ideally, a move up/down in report explorer view would be even better (and more intuitive).