Are there any plans to have the ribbon bar available in the web designer for quick actions like in the desktop designer?
In the web designer is there a way to restrict users to only select form one existing connection and not be able to create any more? Ideally I'd like to skip stage #1 entirely and go straight to the second step...

Are there any plans to implement the SQL Query Designer in the web report designer?
Hey,
I am designing a column chart and divided the results by categories. However when the columns are plotted, they are not centered in between each category tick:
As you can see, the columns are displaced to the right, and this displacement is increasing for each new record.
This is occurring in every report I design.
How can I solve this?
Thank you,
Manuel Queiroz

More Detail of the exception:
{"message":"","exceptionMessage":"A generic error occurred in GDI+.","exceptionType":"Telerik.Reporting.Services.Engine.DocumentRenderException","stackTrace":" at Telerik.Reporting.Services.Engine.Document.GetDocumentInfo()\r\n at Telerik.Reporting.Services.AspNetCore.ReportsControllerBase.GetDocumentInfo(String clientID, String instanceID, String documentID)\r\n at lambda_method(Closure , Object , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync()\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync()\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync()"}
Dear Team,
We have installed Telerik in both WINDOWS 10 64 bit OS and LINUX (Debian GNU/Linux 10 (buster) OS) and created .trdp file then generate output and faced alignment issues (same .trdp file provides different output based on WINDOWS/ LINUX OS)
i have attached the reference files
Thanks for understanding
Kindly provide good solution for us
Best Regards
Ganesh Raja J
Hi everyone,
My report.trdp include 2 hidden parameters (A,B) and 2 not hidden parameters (C,D)
my PM want when user create new task in scheduling feature on my reporting server then click to parameters tab
The expectation here is:
2 hidden parameters (A,B) NOT auto select "Use default value" check box
2 not hidden parameters (C,D) AUTO SELECT "Use default value" check box
so Is there any way to do that?

Hello,
I'm new to Telerik Reporting and I was trying to check if it was possible to show custom data in a table in Reporting.
Now I have seen posts where it was mentioned that this was possible...but unfortunately I was unable to make it work at my end.
In my sample....I have already designed a template which has a blank table. Now I was trying to populate the table with data dynamically, but it didn't seem to work.
I am able to view the data from a RDBMS server and display it in “Preview” Mode in the reporting tool, but this is not what I want.
Here is my code.
int[,] arr = new int[2, 2];
arr[0, 0] = 0; arr[0, 1] = 1; arr[1, 0] = 2; arr[1, 1] = 3;
var reportPackager = new Telerik.Reporting.ReportPackager();
using (var sourceStream = System.IO.File.OpenRead("SampleReport.trdp"))
{
var report = (Report)reportPackager.UnpackageDocument(sourceStream);
Telerik.Reporting.Table table = report.Items.Find("table1", true)[0] as Telerik.Reporting.Table;
table.DataSource = arr;
}
Can someone point me to some sample code where something like this might be happening so that I can understand where I might be wrong?
Any help would be appreciated.
Thank you!

I'm working in a project with AspNet Core 3.1 and Postgres 13, with Npgsql-3.2.7 controller for the conection to my data base in Telerik Report Designer App Desktp. When use a DataSource in said application with default values in the parameters to a stored procedure in postgres, does WORK CORRECTLY, But, when I try use the Report in My AspNet Core MVC application running, sending the parameters like they documentation, the values aren't received in a postgres Stored Procedures. Instead they recieve null value.
Could you help us, and tell us if there are any extra settings that we are missing, or why this situation occurs?
