I'm getting an error when passing a parameter to a report programmatically.
Data source is embedded in report definition. I was using a default parameter value, also embedded in the definition. Now I'm trying to change it with the following code, but getting an error:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
Dim p1 As New Telerik.Reporting.Parameter With {.Name = "AGClientID", .Value = "1111"}
ReportViewer1.ReportSource.Parameters.Add(p1)
End Sub
Error is: Value of type 'Parameter' cannot be converted to 'Parameter'
Hello,
Is it possible to design a card view in telerik reporting like the one attached?
I'm trying to display a line chart in my report.
I have it kinda working but there is a big problem...
The report should house data regarding a thermal treatment of material that lasts several hours.
Ergo there is a lot of data to display...
During my last attempt at displaying the chart in the PDF file during processing memory usage went slowly up to my limit of 2GB and stayed there like if resources were not freed up after the fact.
Is there maybe a better solution?
Just to give an idea there are upwards of 5000 values to display... I know it's a giant number but the last library I used was able to do it with minimal effort... I'm probably doing something wrong myself...
Hello Telerik,
We have created a dashboard(.TRDP) file and this dashboard is being called inside an IFrame in shareporint application.
When the same dashboard is viewed with the data, the tooltip value is getting broken near the IFrame.
Find the attached error for the same.
Request you to please provide a solution in resolving the same.
Hello Telerik,
Am facing an issue with Overlapping of values in the Line chart graph created in Telerik Reporting.
I have attached the sample screenshot for the same.
From the Screenshot, you can see that there are 2 legends(Apple and Orange). And both the legends have the same value of 21 for all the months in the Y-axis.
But it displays the value only for Orange and the value for Apple is hidden or it is not visible. Also when i hover on the line chart it still shows value for only Orange.
What is the solution where in i can show both these values and its corresponding lines with its colors.
Hello,
I am trying to run the Telerik Report Viewer with a WinForms application along with Wine on Linux. The application runs correctly, but it gives the following error before showing me the Report Viewer (the attached image). Is there a way to fix it. Thanks in advance
error: culture is not supported, the parameter name eo is an invalid identifier
Hi,
I want to use the CancelationToken after updating to R2 2020 but not sure how can I do that with a way we process reports.
We have Report API (ReportsController) and a custom report resolver (IReportSourceResolver). Custom report resolver returns ReportSource object. The client side is HTML5ReportViewer.
So, for a processing report, exporting, printing we are not using any custom ReportProcessor classes.
How with this architecture, where we are not using programmatically ReportProcessor class, we can use CancelationToken? Is there any event we can subscriber so that cancelation token can be added before processing, exporting or printing reports?
Thanks,