Unplanned
Last Updated: 22 May 2019 13:01 by ADMIN
Is it possible to do the conditional formatting of a text watermark? For example, I am checking if the parameter value is equal to Passed, then font color of watermark should turn green else it turns red.
Completed
Last Updated: 20 Jun 2019 13:23 by ADMIN

When dynamically create a new tab which contains a report viewer, only the first report is rendered correctly. The subsequent tabs with report viewers are empty.

Unplanned
Last Updated: 06 Jun 2019 11:56 by ADMIN

Telerik saving to PDF issue intermittently.  The issue is that the graph gets skewed and then won’t open in Acrobat once the report is exported.

Unplanned
Last Updated: 21 Jun 2019 11:19 by ADMIN
Created by: Carl
Comments: 1
Category: Reporting
Type: Feature Request
1

It would be extremely useful to have a Crosstab export the entire hierarchy as groups in Excel. SQL Reporting Services does this when exporting a report created there. I realize that this would mean generating the entire dataset prior to the export in order to expand all the data, but as I said, SSRS does this without a noticeable performance delay.

 

 

Unplanned
Last Updated: 24 Jun 2019 09:08 by ADMIN
Created by: Peter
Comments: 0
Category: Reporting
Type: Feature Request
1
Currently to add a new Shared/Project DataSource a new component item is added and then modified manually to Telerik Reporting DataSource. This is not obvious and is kind of peculiar workflow. Thus consider adding ItemTemplates to manage the process for adding new Telerik Reporting Shared/Project DataSources.
Unplanned
Last Updated: 02 Jul 2019 09:08 by ADMIN
Created by: Ronald
Comments: 0
Category: Reporting
Type: Bug Report
1
After the report is translated we started to change the sequence of parameters. This works fine except the translated texts do not move with it. So parameters have the wrong text.
Completed
Last Updated: 22 Oct 2019 11:28 by ADMIN
When a TextBox is deleted from a localized report, if a new TextBox is added, its localized value would be set to the localized value of the deleted TextBox.
Unplanned
Last Updated: 15 Jul 2019 10:46 by ADMIN
Created by: Daniel
Comments: 0
Category: Reporting
Type: Bug Report
1
When a column is hidden through binding, a small gap appears to the border of the next column.
Unplanned
Last Updated: 23 Jul 2019 11:16 by ADMIN
Created by: Brian
Comments: 1
Category: Reporting
Type: Feature Request
1

Asking to enable typing into the font combo box in standalone Telerik Report Designer.

 

The concept would be to click on the font drop down and just start to type the name of the font and have the list shift to that position for you.

Unplanned
Last Updated: 29 Mar 2021 10:03 by ADMIN
Created by: Charles
Comments: 1
Category: Reporting
Type: Feature Request
1

Please add to the Telerik reporting step line chart the same functionality that exists in the kendo ui step line chart.   There is an attribute for justified = true that allows the line to step directly to the marker rather than having them placed in the middle of the step.  Please see the attached images for the current result vs the desired result.

Unplanned
Last Updated: 10 Sep 2019 14:12 by ADMIN

I used https://docs.telerik.com/reporting/html5-report-viewer-howto-use-it-with-reportserver to setup an HTML5 Report Viewer with Report Server. After running the project, the viewer does not load. It seems that it could not find telerikReportViewer script. 

Workaround: Instead of

<script src="/api/reports/resources/js/telerikReportViewer"></script>

use absolute path:<script src="http://yourreportserverhost:83/api/reports/resources/js/telerikReportViewer"></script>

Unplanned
Last Updated: 30 Sep 2019 15:14 by ADMIN
Please put the tool windows in a Docking system, like Teleriks.  Forcing the property window to be pinned to the right side is a UI/UX issue. Studies have shown that placing it on the left, makes it easy to use since the object your assign property value is very close and the distance the mouse must be moved it greatly shortened.
Unplanned
Last Updated: 07 Oct 2019 10:35 by ADMIN
Created by: Karl
Comments: 0
Category: Reporting
Type: Feature Request
1

Hi,

It's very frustrating having to type in Style Names in the Properties tool window.

All styles names both internal and external should be known by the standalone designer or Visual Studio designer.

This would be a big productivity boost.

Karl

Unplanned
Last Updated: 07 Oct 2019 10:40 by ADMIN

Hi,

It gets frustrating always resizing every dialog so I can use it, each time I open them.

Please give the Report Designer Dialogs, and Visual Studio dialogs a save size setting so when reopened they will go back to the same size.

Thank you,

Karl

Unplanned
Last Updated: 07 Oct 2019 11:33 by ADMIN

StyleRule Collection Editor Members list NEEDS to be resizable. 

PLEASE SEE THE ATTACHED IMAGE

It's frustrating to have to scroll a Listbox horizontally to read the values. 

This control should be wider by default, and then allow the user to resize, and then REMEMBER their resize.

Thank you,

Karl

Declined
Last Updated: 07 Nov 2019 16:15 by ADMIN
Created by:
Comments: 1
Category: Reporting
Type: Bug Report
1

i down  last new version  r3 2019  sp1 trial, create  Simple example for  binding table

eg:

reporting design tool  render result:


 

 

 

Unplanned
Last Updated: 05 Nov 2019 14:42 by ADMIN
If the Kendo SASS based theme is used the resize handle and collapse/expand icon has some UI issies.
Completed
Last Updated: 13 Dec 2019 15:20 by ADMIN
Release 2020\R1
Created by: Ikbum Kim
Comments: 0
Category: Reporting
Type: Bug Report
1
Changing the Telerik Report Viewer pageMode setting through PageMode method does not work correctly
Completed
Last Updated: 13 Dec 2019 15:20 by ADMIN

As virtually every product with 10+ years of development, Telerik Reporting has a certain amount of legacy code that was considered immutable at the time of writing. During the refactoring of our codebase to make it compatible with .NET Standard, we introduced a few types from System.Windows.Forms namespace to substitute the ones missing in the current version of the framework. Such types are System.Windows.Forms.CheckState and System.Windows.Forms.ControlPaint. Some of these types are introduced in recent release of .NET Core 3 for Windows Forms and therefore a conflict occurs between the types in our assemblies and the ones declared in .NET Core. The error is thrown in compile-time and it is similar to the one shown below:

The type 'CheckState' exists in both 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'Telerik.Reporting, Version=13.2.19.918, Culture=neutral, PublicKeyToken=a9d7983dfcc261be'

 

In a future release of our product this collision will be avoided by using a dedicated enumeration for the duplicated types. A possible workaround would be to add an extern alias to the assembly reference of Telerik.Reporting. In this case all the references to Telerik.Reporting have to be edited to use the new alias, but the code that refers to the actual types from System.Windows.Forms will remain unchanged.

 

Here is how the Telerik.Reporting reference would look like in the application .csproj file:

  <ItemGroup>
    <Reference Include="Telerik.Reporting">
      <HintPath>..\..\..\Bin\netstandard2.0\Telerik.Reporting.dll</HintPath>
      <Aliases>telerikReporting</Aliases>
      </Reference>
  </ItemGroup>

 

Using the alias means that all the types in Telerik.Reporting namespace must be accessed with this alias. Unfortunately this also applies to C#/VB report definitions - their types must also be prepended with the alias, which could require significant effort. Here is a sample code file that initializes the WinForms Report Viewer and examines the CheckState of a CheckBox control in the form:

extern alias telerikReporting;

using System;
using System.Windows.Forms;

namespace WindowsFormsCoreDemo
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
            this.Load += this.Form1_Load;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.reportViewer.ReportSource = new telerikReporting::Telerik.Reporting.UriReportSource()
            {
                Uri = "SampleReport.trdp"
            };

            this.reportViewer.RefreshReport();
        }

        private void CheckBox_CheckedChanged(object sender, System.EventArgs e)
        {
            if (this.checkBox.CheckState == CheckState.Checked)
            {
                this.reportViewer.RefreshReport();
            }
        }
    }
}
Completed
Last Updated: 16 Jan 2020 11:54 by ADMIN

When the user confirms changing the chart type through the "Change Chart Type" dialog window, the graph designer does not get refreshed and still shows the old chart type.

Underneath the graph item is actually changed and if the report is previewed, the new graph layout will be displayed. The current workaround is to refresh the graph designer by changing one of its properties that cause full item refresh - Culture, Graph title, NoDataMessage, etc.