Unplanned
Last Updated: 21 Sep 2022 13:35 by Steve
When you exporting the template from a report on the report server, it gives the "Template build failed" error message.
Under Review
Last Updated: 05 May 2021 11:43 by ADMIN
Created by: Yudith
Comments: 1
Category: Reporting
Type: Feature Request
3

Hi Telerik Team,

 

I am using telerik reporting watermark to put some "design" in our report template for all the pages, but a small image with a size of 50kb as watermark generates additional 200-300MB of memory usage during the rendering of the report.

 

Please reduce the memory consumption since this behavior limits the number of user that can access the report simultaneously

 

Thanks 

Completed
Last Updated: 10 Nov 2021 16:55 by ADMIN
Release R3 2021 SP1

Ways to reproduce the problem:


1. Create simple one table one column report, with right horizontal text alignment in the column.

2. Set a data source with multiple rows, with different lengths for the string, displayed in the table's column.

3. Render the report under Windows and under Linux - the column text on different rows will not be aligned properly on linux, but will be shifted to the left or right depending on string's contents and length.

I've done a bit reserch on PDF rendering, concerning libgdiplus "MeasureString" method deficiencies, and here's what I discovered so far:

1. The source of the problem is the fact that libgdiplus ends up using cairo to measure string glyphs, and it does it's font metric in whole pixels (integer), using the DPI of the context it is called in. In short, if the context is using 96DPI, cairo will use these 96DPI to calculate (and round) the font metrics, and to write strings eventually.

2. When libgdiplus is compiled to use pango, the problem is much smaller (several millimeter differences become part of the millimeter), because internally pango scales the measurement 1024 times, but it appears that this is not enough to resolve the problem.

3. When using libgdiplus (with or without pango inbetween it and cairo) for both "DrawString" and "MeasureString", everything is perfect, but the fundamental problem in Relerik Reporting to PDF is that it renders in a vector format, but uses text metering for pixel format - it uses System.Graphics.MeasureString which is a DPI vased metering (on Linux at least) but uses proprietary "PdfRenderer.DrawString" of the "PdfRendered" class, not the native Graphics.DrawString. Since cairo rounds every character glyph metrics to an integer value, the longer the string is, the larger the discrepancy will be between string rendering when PDF is viewed (based on floats/doubles) and Graphics.MeasureString (based on integers, at least on Linux).

Ways to resolve the issue:

1. The best way to resolve the issue is not to call Graphics.MeasureString at all, when rendering to vector based format, because it measures string based on the DPI on graphics context it is in. In other words, proprietary "PdfRenderer.MeasureString" must be  implemented, which works with font glyphs directly, entirely using single or double precision math to calculate glyph dimensions and string dimensions.

2. Another, not so perfect, but HUGELY EASIER way is to set DPI of the rendering context of the PDF to a higher value, here's how:

For the moment, PdfContext's constructor looks like this
public PdfContext(string ownerPassword, string userPassword)
{
            this.dataFormatter = string.IsNullOrWhiteSpace(ownerPassword) ?
                                    new DataFormatter() :
                                    new DataFormatterEncypted(ownerPassword, userPassword);

            this.bmp = new Bitmap(1, 1);
            this.graphics = Graphics.FromImage(this.bmp);
            this.hdc = this.graphics.GetHdc();
            this.pdfFontCache = new PdfFontCache();
 }
This creates a Graphics object, based on a Bitmap with default system's DPI, which is usually 96DPI, or somethiong around this. So, all rendering metrics are callulated for 96DPI, so there will ALWAYS be a discrepancy between PDF's real rendering (when viewed with a reader), and Telerik reporting engine's calculations.

So, a simple way to get around this is to use higer DPI Graphics object, like this:

public PdfContext(string ownerPassword, string userPassword)
{
    this.dataFormatter = string.IsNullOrWhiteSpace(ownerPassword) ?
                            new DataFormatter() :
                            new DataFormatterEncypted(ownerPassword, userPassword);

    this.bmp = new Bitmap(1, 1);
    bmp.SetResolution(9600, 9600); //ADDED
    this.graphics = Graphics.FromImage(this.bmp);
    this.hdc = this.graphics.GetHdc();
    this.pdfFontCache = new PdfFontCache();
}
This makes the discrepancy 100 times lower, and in most cases practically invisible.

3. Another, more or less simple way to get around this, is to multiply font size and layout metrics by some number (I personally tried 16, 32, 128 and 256) before calling Graphics.MeasureString(), and dividing the result of the call by the same number after calling it. From my experience, 16 makes things MUCH better, and 128 is maybe enough to resolve 99.99% of the cases.

Attached is the result when rendered without multiplication (Linux-Orig.png) and when font size and layout methrics are multiplied by 128 before calling "MeasureString", and dividing the result by 128 afterwards (Linux-MultipliedBy128.png). On Windows the result looks exactly like the the corrected rendering on the "Linux-MultipliedBy128.png.
Unplanned
Last Updated: 18 Aug 2022 16:02 by James
Created by: Yoonsik
Comments: 2
Category: Reporting
Type: Feature Request
3

I need to set a structured heading tags like <h2><h3> (https://www.w3.org/TR/WCAG20-TECHS/PDF9.html) so the pdf file can have those tags.

Please make the Reporting support more various tags so pdf files can have structured tags.

Unplanned
Last Updated: 06 Aug 2021 14:19 by ADMIN
Please, add an option for setting gradient colors for the background of text box, header, table headers etc.
Completed
Last Updated: 10 Nov 2021 16:55 by ADMIN
Release R3 2021 SP1

Hello, 

I am using the Blazor Web Report Designer on a page that is not the default route, i.e. "/". When I am at step 2 in the WebServiceDataSource wizard to add parameters, if I click the Add Parameter button it routes to the home page. 

I believe this is caused by the href="#' empty route. Below is an animation of what I mean. This is also reproduced in the BlazorIntegrationDemo in the installation directory.

 

ea14844d-c61e-4dd7-a8c4-151c472ba700_add-parameter-click-issue.gif (1920×866)

Unplanned
Last Updated: 21 Dec 2023 15:31 by j

Error: Unable to cast object of type 'Telerik.Reporting.Processing.Expressions.ProcessingEvalProvider' to type 'Telerik.Reporting.Expression.IValueObject'

is thrown on previewing the data source results in the WebServiceDataSource when the Runtime or Design time expressions are left completely empty or the runtime value is a report parameter with an empty Value property.

Completed
Last Updated: 11 May 2022 10:24 by ADMIN
Release R2 2022

The following error is thrown when inserting a new column on merged columns in a crosstab/table and then trying to select that column:

"Value cannot be null. Parameter name: components"
Completed
Last Updated: 10 Nov 2021 16:55 by ADMIN
Release R3 2021 SP1
Created by: Shannon
Comments: 3
Category: Reporting
Type: Bug Report
3

I like the new open dialog for the Web Report Designer, but now my report names are all truncated and I can't tell what anything is.  Can you please off a list view in the Open Dialog so all my names aren't "Company R..."

 

Unplanned
Last Updated: 09 Nov 2021 15:34 by ADMIN
Created by: Wing Yee
Comments: 0
Category: Reporting
Type: Bug Report
3

Currently, the Web Report Designer does not allow one to insert a report item in place of a table cell textbox.

Meanwhile, the Standalone Designer does allow such operations.

Completed
Last Updated: 11 May 2022 10:24 by ADMIN
Release R2 2022
The problem is that the uppercase for i in English is I (note the lack of a dot) but in Turkish it’s dotted, İ. So while in English there are two i’s, for Turkish they are four.
Completed
Last Updated: 15 Nov 2023 17:17 by ADMIN
Release 2024 R1 PI1
Currently, in the Web Report designer, when you define a Binding, there is no dropdown with the available property paths as it is in the desktop designers.
Unplanned
Last Updated: 27 Jan 2022 10:15 by ADMIN
Running the Web Report Designer behind JWT authentication and the upload of TRDP files fails with 401 because it doesn't send the appropriate token/Authorization header.
Unplanned
Last Updated: 03 Feb 2022 13:18 by ADMIN
Created by: William
Comments: 0
Category: Reporting
Type: Feature Request
3
Currently, we are not able to add a new SQL DataSource to the report programmatically without assigning it to a data item. For example, you can unpackage the report, add the datasource and assign it to the report or to a table, but we want to add it only.
Declined
Last Updated: 30 Dec 2022 15:28 by ADMIN
Created by: Erik
Comments: 1
Category: Reporting
Type: Bug Report
3
Visual Studio 2022 cannot open reports in x86 mode. The same project works correctly in VS 2019.
Completed
Last Updated: 11 May 2022 10:24 by ADMIN
Release R2 2022
Created by: Ian
Comments: 0
Category: Reporting
Type: Bug Report
3
We would like to use the latest versions of jQuery and Kendo.

Updating jQuery to 3.6.0 seems to work, however, using Kendo 2022.1.119 appears to break the fonts and some menus in the web report designer.

The rest of our project is using 2022.1.119 so we would like to deploy only one version of Kendo (and jQuery) across our product.
Unplanned
Last Updated: 16 Mar 2022 14:31 by ADMIN
Created by: Magnus
Comments: 1
Category: Reporting
Type: Feature Request
3

Hi,

Does the Web Report Designer support zooming of the report area? Similar to the Standalone designer:

 

Best regards,

Magnus

Unplanned
Last Updated: 16 Mar 2022 14:31 by Olivier
Created by: Olivier
Comments: 0
Category: Reporting
Type: Bug Report
3
The Freezing functionality does not work. Please, check the attached report.
Under Review
Last Updated: 06 Apr 2022 10:34 by ADMIN
Created by: Hannah
Comments: 0
Category: Reporting
Type: Feature Request
3

Please add DropDownTree and/or TreeView as single- and multi-value parameter editors to accommodate Hierarchical data. It would be nice to have them out-of-the-box when available values come from a hierarchical/self-referencing table(s), but I would be happy if they could be integrated as Custom Parameter Editors. I was able to render and populate the dropdowntree with checkboxes, pass the correct selected values, but the 'Preview' button would never enable upon selection. Also, the dropdowntree's AutoClose(false) was not recognized. I know this can be achieved outside of the report viewer, but sometimes that method disrupts the layout and flow of the reporting view.