Hello,
i'm using Telerik Reporting 2020, when add TOC section in report show error: Object reference not set to an instance of an object
So, what we need to know is if we can add our new Telerik service into a solution that 4 developers access, but we only allow the reporting dev to work on the reports and not have to pay for 4 licenses. Or does it need to be a stand alone project?
Essentially, would the Telerik reports still work if it's in a Project that is also accessed by multiple developers?
Hello,
I understand that currently, Telerik Reporting supports only .NET Framework projects in the Visual Studio Designer due to limitations of .NET Core 3.0 support. However, I'm wondering, will this be addressed when Microsoft releases .NET 5 later this year? Will we be able to design Telerik Reports in Visual Studio for .NET 5 projects?
Thanks.
Deepak Gupta
Hello,
I tried to add parameters to change default format from LIST_VIEW to COMBO_BOX but i can't do it.
I added like below but it don't work
version used 16.2.22.914
<tr-viewer
#viewer1
[containerStyle]="viewerContainerStyle"
[serviceUrl]="address"
[reportSource]="{
report: test.trdx,
parameters: {
editors: {
singleSelect: viewer.ParameterEditorTypes.COMBO_BOX,
multiSelect: viewer.ParameterEditorTypes.COMBO_BOX
}
},
}"
[viewMode]="'INTERACTIVE'"
[ready]="ready"
[scaleMode]="'SPECIFIC'"
[scale]="1.2">
</tr-viewer>
Hi Guys
I have some Telerik Reports and i'm using Telerik Report View on MVC Razor view. I can easly translate my data inside Report but i cannot translate ReportView elements like Report Toolbar
How can i handle this? Here below my one of report example.
@{
DateTime today = DateTime.Today;
DateTime startOfMonth = new DateTime(today.Year, today.Month, 1);
DateTime today1 = DateTime.Today;
DateTime endOfMonth = new DateTime(today1.Year, today1.Month, DateTime.DaysInMonth(today1.Year, today1.Month));
UriReportSource trial = new UriReportSource();
trial.Uri = "Card Summary Report.trdx";
trial.Parameters.Add("DateFdy", startOfMonth);
trial.Parameters.Add("DateEnd", endOfMonth);
trial.Parameters.Add("Culture", (string)ViewData["lang"]);
}
@(Html.TelerikReporting().ReportViewer()
.Id("reportViewer1")
.ServiceUrl("/api/reports/")
.ReportSource(trial)
.ViewMode(ViewModes.INTERACTIVE)
.ScaleMode(ScaleModes.SPECIFIC)
.Scale(1.0)
.PersistSession(false)
)
Hello,
using Telerik.Reporting.17.2.23.1114.nupkg in .Net 8 project leads to warning:
Microsoft.NET.Sdk.targets(284, 5): [NETSDK1206] Found version-specific or distribution-specific runtime identifier(s): alpine-x64. Affected libraries: SQLitePCLRaw.lib.e_sqlite3. In .NET 8.0 and higher, assets for version-specific and distribution-specific runtime identifiers will not be found by default. See https://aka.ms/dotnet/rid-usage for details.
Why it happens is described in MS web site.
I found that Reporting nuget is using old/problematic dependency
<dependency id="SQLitePCLRaw.bundle_green" version="2.0.4" />
If you upgrade this to version 2.1.6, it fixes this problem. See release notes: https://github.com/ericsink/SQLitePCL.raw/releases/tag/v2.1.6
I have 2 graphs with DateTime scales. But when the data is populated the graphs are misaligned slightly to right as below image, this is because graph1 has a y-axis labeled as 01-June and graph 2 has 31-May. Looks like because of the character's size 'Jun' and 'May', the graph representing May is slightly moved to the right. How do I adjust the spacing/padding between label and axis line ? I' using the telrik v17.1.23.
Hi Everyone,
I've recently upgrade telerik reporting to the last version. I'm currently using the report viewer in a .net core application on linux. Since the last version the print option and the pdf export doesn't work anymore.
On the front end i'm getting
telerik reporting The header contains invalid values at index 0: '<null>'
and on the server server side I'm getting an exception with
telerik.Reporting.Pdf.Fonts.TrueType.FontDataProvider
I've set the appsettings to use the GDI and still have the system.drawing.common set at 6.0 for now. I never had any issues prior to this update with the same settings. Anyone had this issue before? All other export works perfectly fine, only the pdf and print options have issues.
Thank you very much,
Guillaume