Hi,
I am trying to print a 2 page document. However, only the first page is printed.
When I render the report with reportProcessor.RenderReport and write the rendered report to a PDF. This PDF has two pages, as expected . (However, the printed document is only 1 page long... )
I use the following code to print:
PrinterSettings printerSettings = new PrinterSettings
{
PrinterName = printerName,
PrintRange = PrintRange.AllPages,
MinimumPage = 0,
MaximumPage = 1000,
FromPage = 0,
PrintToFile = false
};
PrintController standardPrintController = new StandardPrintController();
ReportProcessor reportProcessor = new ReportProcessor
{
PrintController = standardPrintController
};
reportProcessor.PrintReport(reportSource, printerSettings, Globals.OutputFormat);
Hello There.
I'm trying to export data from the report viewer to pdf and excel.
The problem is in the place where in the report I have a page break I see the table in the export as a data row.
Please advise how to fix it.
Thanks a lot.
Hello There
I am using HTML5 Report Viewer and exporting the report on a button click.
var rv = $("#reportViewer1").data("telerik_ReportViewer");
rv.commands.export.exec("PDF");I am getting the PDF url created in exportEnd event of the viewer. All working fine.
I am wondering is there a way, i can get the PDF url without exporting, because the built in export is navigating the new tab, which i don't want to go to new tab in mobile browser.
Thank you.

While rendering report got Error like this Error loading the report viewer's templates. (trvTemplateUrl = 'https://abcdf.com/api/reports/resources/templates/telerikReportViewerTemplate-16.0.22.225.html/'). when i try this same telerik reporting from other domain it's working only this domain it gave this error. and network it shows like CORS error. we don't know where to allow all the domain address. In Asp.net we have this config to enable CORS
services.AddCors(c =>
{
c.AddPolicy("AllowOrigin", options => options.AllowAnyOrigin().AllowAnyHeader().WithExposedHeaders("X-total-count"));
c.AddPolicy("ReportingRestPolicy", corsOptions => corsOptions.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader());
});
app.UseCors("ReportingRestPolicy");

Hello Team,
I am looking to build report similar to below image 1, but only lines are displayed for min, max, monthend and yearend
how to fill in bar color ? any properties to set ?
image 2 is created using telerik report designer (candelstick chart)
Hi,
I'm having problem when showing report when I run Telerik Reporting REST service is Docker (Linux OS). As a report viewer I use HTML5 report viewer. For serviceUrl we can set http port of current host port from the container. The problem is when we preview the demo report, it shows like this error: "Unable to get report parameters..."
You can see the Demo project from my GitHub to reproduce the problem.
Project with html5 report viewer: Tursunkhuja/Telerik-HTML5-Report-Viewer-in-UWP: Show HTML5 report viewer in UWP window (github.com)
Project with reporting service project: Tursunkhuja/Telerik-Reporting-REST-Service: Telerik Reporting REST service. Docker (Linux OS) is enabled. (github.com)
Any idea on how to run Rest Service project in Docker correctly?
FYI: If we use "IIS" to run the Rest Service project, it works fine so it will show the demo report (Barcode examples report) without any error.

i am getting the above error on some servers and the below URLS referred how to fix it ?
restReportService Element | Telerik Reporting
I have a Web API from which I get a list or Objects, Each Object has a List of subobjects inside of it. I would like to build a report that for each element of the top list fills 2 textboxes and fills a table with the sublist, and copy that group of elements for each member of said parent list.
Can this be done?
List<Object1> is recieved from the datasource
Object1 -> FirstName, LastName, DoB, List<Object2>
Object2 -> Email, Number etc...