I want to be able to change GraphTitle color (within Graph) or any other style property related GraphTitle via binding expression.
The problem is the graph object does not expose bindings related to its child Graphtitle.
I have attached a screen shot report, I want to change the GraphTitle color to green if the percentage is higher than 50 else the graph should be red
Hello Supports,
I want to try and install Nuget packages Telerik.Reporting and Telerik.Reporting.Services.AspNetCore for my Asp.net Core project but it isn't found.
I followed the instructions at this link "https://docs.telerik.com/reporting/html5-report-viewer-asp-net-core-2".
But when I go to the option "Manage Nuget packages", these are no available the packages to download (see the attached file).
Is it missing from the private nuget feed ?
I used https://nuget.telerik.com/nuget as my nuget feed.
Thank you.
Hello.
3 questions :
1) I use ASP.NET MVC Core report (last version). Everything works fine with the viewer. Thanks a lot to TELERIK.
I want generate directy a PDF version of the report. Like user click on a link and the report is downloaded directly.
Can I have some sample to doing this (C#)?
2) And how I can use @(Html.TelerikReporting().ReportViewer() rather javascript :
$(document).ready(function () {
$("#reportViewer1")
.telerik_ReportViewer({
...TelerikReporting() is always in red. Nuget missing? See attachement for the ones in have in my project.
3) ReportingEngineConfiguration is misssing in ReportController. See attachement.
Hello,
I have created an Angular project in which a report is displayed
in the Report Viewer, which is loaded by the Report Server.
As described in your example.
I use the option "[reportSource]" to pass the
following object:
"{Report: categoryName / reportName}".
Now I want to change this object to another report and show
this.
Unfortunately it did not work that easy.
So I researched the documentation and found out that methods
can be run on the viewer.
https://docs.telerik.com/reporting/angular-report-viewer-api-methods
refreshReport() and setReportSource() sounded good and I
tried them as they did in your example.
Unfortunately, that did not work either.
In the console came
the following errors :
My HTML:
01.
<
button
(click)="viewer1.refreshReport()">Refresh</
button
>
02.
<
button
(click)="viewer1.setReportSource(rs)">setReportSource</
button
>
03.
<
button
(click)="
temp
=
viewer1
.getReportSource()">getReportSource</
button
>
04.
05.
<
pre
>{{temp|json}}</
pre
>
06.
<
pre
>{{reportSource|json}}</
pre
>
07.
08.
<
tr-viewer
#viewer1 *
ngIf
=
"reportSource"
09.
[containerStyle]="viewerContainerStyle"
10.
[reportServer]="creds"
11.
[viewMode]="'PRINT_PREVIEW'"
12.
[scaleMode]="'SPECIFIC'"
13.
[scale]="1.0"
14.
[reportSource] = "reportSource"
15.
></
tr-viewer
>
What am I doing wrong? How can I call another report in the viewer?
Here is what I'm trying to do.
I have a stored procedure that takes five parameters: Start, End, Name, Type1, and Type2. I need to generate this report using (Start, End, Type1, Type2) for each selected Name, which is a multivalue parameter on the top-level report. e.g., each detail section or subreport for Mark, Amy, Nick, etc should use the same values for the other parameters.
How do I go about doing this?
Hi Telerik,
Firstly, I export the report that I created using Telerik Reporting to Word document and then make some changes.
Once done, I save it as PDF format for my client reference. After that, all graphs in the report saved to PDF format become smaller.
You may refer attached image as your reference.
Hello All,
Hoping that someone can shed some light on this weird - to me at least - problem! When I debug my ASP.NET Core reporting application started using F5 everything works perfectly and my report displays just fine. However, if I start it with CTRL-F5 I get the message: "Unable to get report parameters - Report 'xyz.trdx' cannot be resolved." Similar to what you get if the report path is not correct. How can this be since nothing changes but the start method? I've checked the only place I could think of, in the Startup.cs where you have an "if (env.IsDevelopment()), but all I have in there is a developer exception page vs a fixed page for production. Really stumped here.
Any thoughts appreciated,
Scott
Hello,
Can someone please explain to me what the following line is doing:
this.services.AddTransient(ctx => new ReportsController(new ConfigurationService(env)));
I don't need to add any of my other controllers to the Startup.cs file. I would like to really understand this so as much detail as possible or a link to an article would be very helpful.
Thank you,
Scott
I'm currently integrating Telerik Reporting into my companies web application, which uses ASP.NET WebForms. I'm using the Standalone Report Designer to build the reports, then I import them into our application to use.
I'm having trouble displaying multiple reports on one .aspx page. I'm using the <telerik:ReportViewer> and <telerik:ReportSource> to reference the reports. Individually the reports display fine, however when trying to render them both, they load and then don't display anything.
Is there something I'm missing? I haven't been able to find much on the forums/documentation on this issue.