When I try to update Telerik Reporting using the Progress Control Panel, or uninstall my existing reporting, it aborts with an install error:
Product: ProgressĀ® TelerikĀ® Reporting R1 2018 SP1 -- Error 1316. The specified account already exists.
Log attached.
Good Afternoon All,
I have recently created a WinForms application that used the Report viewer. Everything is working successfully on my machine however on the end users machine they are getting the attached error.
The application uses MySQL Database at the back end and the application set the datasource providername to the mysql data source at runtime.
I have ensured that the the setup project the dependencies for MySQL.Data.dll are visable and being deployed.
Can someone please help me out with this to try and get it working on the end users machines.
Thanks in advanced
Luke
I'm just new here in Telerik Forum, I don't know if I'm in the right thread to ask this question.
I just want to know how to set the unit of measurement programmatically(code) using Telerik report viewer WinForm, Because I'm having a problem in viewing the print preview of my report using (US) System Unit Measurement ( Type: Metric / US ). In the Telerik Report Designer there is an option where you can change the Unit of Measurement, by changing the right unit of measurement in Telerik Report Designer the print preview is ok. but when I execute the program and print preview using Telerik Report Viewer WinForm the print preview is not aligned correctly because it is set by default. and I guess the default unit of measurement of Telerik Report Viewer WinForm is (cm / Metric). Sorry for my grammar XD thank in advance.
I built a Blazor app (server) on.NET Core 3.1 and I am using Telerik Reporting with the HTML5 viewer to present reports. Everything is working, except the export formats only allow RTF, CSV, TIFF, and PDF. My users need to be able to export to XLSX format as well.
I have installed the NuGet package for DocumentFormat.OpenXml version 2.7.2 per the documentation, but I don't see the option showing up still, and I don't know how to troubleshoot the issue. Any advice on what I am missing to get the additional format option to appear?
I'm trying to add a pie chart to a report that I've been working on and im at a loss. The chart itself is great, my problem is the Legend. Its showing the wrong column and I cant figure whats wrong with it. I have a query that returns 3 rows and two columns. The query results look something like this:
Category | Amount
--------------------------
Chats | 51
Phone calls | 379
Emails | 2602
When I create the pie chart in the report designer, all the slices are the right size and labeled with the correct percentages. However in the legend, it just has "Amount" shown as the key for each item in the legend. I want it to display the actual category, but cannot seem to get this to work. I followed the documentation listed at https://docs.telerik.com/reporting/graphhowtocreatepiechart, but it still shows "Amount" in the legend instead of the actual categories. I have attached a screenshot of the report designer to show what the pie chart looks like as of now.
I have a report being displayed properly in a 3.1 app and after switching it to net5.0 with RC-2 installed I get the attached error. Can someone perhaps point me in the right direction?
Thank you,
Scott
We are busy with a POC and we have 4 sub reports on our main reports. In each subreport there is an aggregated total in the footer that we want to return and display as a summary value in the main report header section.
Is it possible to write an expression to access the value on a text box in the sub report from the main report?
Or is there a different way to do this?
Hi folks
I'm having problem with Telerik Reporting using Angular 8. it throwing this error ERROR Error: Uncaught (in promise): Invalid clientID.
the below is how i setup viewer.
<tr-viewer #viewer1
[containerStyle]="viewerContainerStyle"
[serviceUrl]= "'http://example/api/reports'"
[templateUrl]="'/assets/template.html'"
[reportSource]="{
report: 'BillingDetails.trdx',
parameters: {}
}"
[viewMode]="'INTERACTIVE'"
[scaleMode]="'SPECIFIC'"
[scale]="1.0">
</tr-viewer>
WEB API
[EnableCors(origins: "http://localhost:4200", headers: "*", methods: "*")]
[RoutePrefix("api/reports")]
protected override Telerik.Reporting.Cache.Interfaces.ICache CreateCache()
{
return CacheFactory.CreateFileCache();
}
protected override Telerik.Reporting.Services.Engine.IReportResolver CreateReportResolver()
{
string reportsPath = HttpContext.Current.Server.MapPath("~/ReportFiles");
var r = new ReportFileResolver(reportsPath).AddFallbackResolver(new ReportTypeResolver());
return r;
}
Client side is separated from webAPI, i'm making Http calls to request resources from web API. JQuery and/or Angular 8 solutions will be appreciated.
Thanks