Unplanned
Last Updated: 18 Jun 2020 08:12 by ADMIN
It would be helpful if you add the ability to import styles into a report from XML. Currently, your users have to save the report, unzip, edit the XML, rezip, reopen and save back to the Report Server for every report.
Unplanned
Last Updated: 16 Jun 2020 14:11 by ADMIN
I use conditional formatting to achieve alternating table row colors. One of the rows has top and bottom borders that appear with different thicknesses in the alternating rows. You can see it in both the Designer preview mode as well as in the PDF and on a printed copy of the PDF.
Unplanned
Last Updated: 15 Jun 2020 08:32 by ADMIN
If I set the column width of a Table with Bindings, everything works as expected when the Table has data. When there is no data in the Table and only the row headers are displayed, the Binding of the width is not respected.
Completed
Last Updated: 09 Jun 2020 15:16 by ADMIN
Release 2020 R2 (Latest Internal Build)
The column widths are narrower than their designed size when exporting to XLSX on machines with DPI > 96. In such scenario the cell contents get wrapped, making the report harder to read.
Unplanned
Last Updated: 08 Jun 2020 11:15 by ADMIN
If you set the Html5 Report Viewer scaleMode to FIT_PAGE_WIDTH or other value different from the default one, the viewer won't resize properly when the user switches the browser window size with the Restore Down/Maximize button.
Completed
Last Updated: 08 Jun 2020 08:10 by ADMIN
Release 2020 R2 (Latest Internal Build)
When the WPF ReportViewer is hosted in a RadTabItem, removing the RadTabItem from its RadTabControl doesn't free the memory, occupied by the report viewer instance, thus producing a memory leak.
Under Review
Last Updated: 05 Jun 2020 08:10 by ADMIN

When the Report is shown in the HTML5 Interactive viewer, you can move the mouse over the cells in the Hyperlink column. When a cell has the mouse cursor hovering over it, a gray border is drawn around the cell.

The problem is that this gray border is partially covered by the Background color of the next cell.

Completed
Last Updated: 03 Jun 2020 14:11 by ADMIN
Release 2020 R2 (Latest Internal Build)
If the report contains an HtmlTextBox with no content or whitespace as content, the generated PPTX document is corrupted.
Declined
Last Updated: 29 May 2020 13:06 by ADMIN
Created by: Mark
Comments: 1
Category: Reporting
Type: Feature Request
1

Hi there,

I was wondering if you had in the Pipeline/road map a Report Designer integrated into Visual Studio for .NET Core?

And also if there is an ETA?

If I can add my +1 to this would be appreciated.

Regards,

Mark

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.
Unplanned
Last Updated: 21 May 2020 15:35 by ADMIN

Data Explorer of the Report Designer does not refresh the schema on the Refresh button click when the Stored Procedure used in a SqlDataSource component is modified.

You need to reconfigure the data source component, for example, just open the Data Source Wizard and click Finish, or close and re-open the report for the actual refresh.

Unplanned
Last Updated: 21 May 2020 08:31 by ADMIN
Created by: Vincenzo
Comments: 0
Category: Reporting
Type: Feature Request
1
Currently the ticks separating categories in the Category Axis have constant lengths. I need to elongate them for better separation between the category labels.
Unplanned
Last Updated: 20 May 2020 07:45 by ADMIN
Created by: Jolanta
Comments: 0
Category: Reporting
Type: Bug Report
5
Try to put a very long text that cannot fit on a single line in a TextBox with solid borders. When you export to PDF, the text may spill out of the TextBox borders.
Unplanned
Last Updated: 19 May 2020 13:50 by ADMIN
Created by: Anders
Comments: 0
Category: Reporting
Type: Bug Report
4

My report consists of a Report Header and a Detail section. Their design-time height is totally less than 20mm. There are no PageBreaks or GroupPageBreaks and all KeepTogether properties are False. In Print Preview, the Detail section starts from the second page when the PaperSize Height is 88mm or less. This is not expected as there is sufficient space left after the Report Header. The Detail section starts rendering from the first page only when the paper height is more than 88mm, which is the expected behavior.

See the forum post Report Header and Detail Section does not print together for the report definition that allows reproducing the issue.

Completed
Last Updated: 19 May 2020 13:46 by ADMIN
Release 2020 R2

When exporting to Excel Worksheet, the CheckBox item is rendered as Excel Picture. If the machine settings are higher than the default 96 DPI (100%), the checkbox image is generated with incorrect size and the produced Excel file is corrupted.

Completed
Last Updated: 18 May 2020 17:57 by ADMIN
Release 2020 R2

Steps to reproduce:

1. Create a Blazor application;

2. Add Teleri.Reporting NuGet package;

3. Add Telerik.WebReportDesigner.Services Nuget package -> some of the app dependencies are broken.

 

Solution:

Refer the .NET Standard DLLs from C:\Program Files (x86)\Progress\Telerik Reporting <Version>\Bin\netstandard2.0.

Unplanned
Last Updated: 18 May 2020 16:07 by ADMIN

Current Behavior

1. Open the Standalone Report Designer.

2. Navigate to the Open Menu.

3. Select the Computer Tab.

4. Observe the available list of folders under the Computer Menu.

5. Navigate to the Options Menu.

6. Change the Default Working Directory.

7. Navigate to the Open Menu.

8. Observe the Available Folder and the directory will not be listed.

9. Select the Browse Button.

10. Observe the open folder is not the expected Default Working Directory from Step 6.

Expected Behavior

It would be nice to remove the previous folder from the Standalone Report Designer Open Menu.

Completed
Last Updated: 14 May 2020 07:02 by ADMIN
Release 2020 R2
Created by: Kevin
Comments: 21
Category: Reporting
Type: Feature Request
35
Please add support for Data Matrix barcodes.  As of Q3 2014 this is the only format we will still need to rely on another library to create an image that is placed in a picture box.  We would much rather be able to use the Barcode control for all our barcode requirements.
Completed
Last Updated: 13 May 2020 13:11 by ADMIN
Release 2020\R2
When parameterized WebServiceDataSource is used for the AvailableValues of Report Parameter, the change of the WebServiceDataSource parameter value doesn't trigger a refresh in the AvailableValues.
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;
    }
}