I'm really having a hard time getting Telerik Reports to do anything for me. The latest version says it's .NET Core but the first thing you do is remove .NET Core from the project and add the full framework.
I have an existing application that is entirely .NET Core. This includes front-end, EF, the API, and the middle-tier. All my business models are .NET Core assembly.
We are not going to add the full framework to any of our existing projects. Therefore Telerik Reporting must be in assembly which will have a front-end used solely for showing reports selected by the user in our main web application. However, since all the business models are in a Core only assembly, and I have no interest in duplicating all the models just for this Telerik only project, I am hoping that I can feed the report JSON retrieved from the API.
Is this possible? I'm looking at the datasources and I'm not clear if one of those would work, or if there is another way to provide this data.
Can we pass html elements such as <button onclick = "dosomething()"> </button> to htmltextbox in html5 report viewer
Hello,
I'm trying to create new table report based on ObjectDatasource and as result I get empty table duplicates. Please see Screenshot_1.png
Could you please advise how the issue could be solved?
Hi,
I'm using telerik report designer R3 2016, and i want to make my textbox dynamic, the textbox should increase according to the number of characters in a word.Please help.
How can i load report from file and change data source?
For example:
I have "report1.trdp", saved in "c:\reports".
MyRptService needs to open it, pass data as object collection (matching field names in report) and output to pdf.
In below example I can open report and output to pdf but I dont see any way to set different datasource
Telerik.Reporting.Processing.ReportProcessor reportProcessor =
new Telerik.Reporting.Processing.ReportProcessor();
// set any deviceInfo settings if necessary
System.Collections.Hashtable deviceInfo =
new System.Collections.Hashtable();
var uriReportSource = new Telerik.Reporting.UriReportSource();
// Specifying an URL or a file path
uriReportSource.Uri = @"C:\data\reports\Report1.trdp";
Telerik.Reporting.Processing.RenderingResult result =
reportProcessor.RenderReport("PDF", uriReportSource, deviceInfo);
string fileName = result.DocumentName + "." + result.Extension;
string path = System.IO.Path.GetTempPath();
string filePath = System.IO.Path.Combine(path, fileName);
using (System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
{
fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
}
Hello,
We have a WPF project that's referencing both Telerik.Windows.Controls.Chart and Telerik.Windows.Controls.Charting. In that project, I'm including a simple LineSeries within a RadCartesianChart in XAML. The associated .xaml.cs file specifies only
using Telerik.Windows.Controls.ChartView;
When building, I'm getting an ambiguous type reference error for "LineSeries", so I tried adding a XAML namespace for clarification:
xmlns:telerik_ChartView="clr-namespace:Telerik.Windows.Controls.ChartView; assembly=Telerik.Windows.Controls.Chart"This code creates an invalid namespace identifier, however. Can you please advise?
Thank you,
E
When I have same data for two or more y axis values, the lines on line graph overlap and I cannot identify which line is for what.
Attached is the picture to explain the scenario.
In the image 'Eastern Cape' and 'Western Cape chaekers' have same count = 3. we can see western cape orange line but red line is hidden behind the orange line.
Please suggest how can we show both lines.

