Hi guys, i'm trying to use report server but there is something wrong.
Follow the images:
This occours when i try to render my report.
The header and the other text are okay, they are rendering.
The other images will show the configuration based on a webServerDataSource.
my report.
my data
my data configuration and i get the my json with the value.
the value of the property that i want
the data source from my webServiceData.
Hye,
I got problem with export report book to pdf.
here is my code
class TestPart : Report1
{
public TestPart()
{
this.DocumentMapText = "Sales By Region";
}
}Telerik.Reporting.ReportBook ourBook = new Telerik.Reporting.ReportBook();
var tocReportSource = new TypeReportSource();
tocReportSource.TypeName = typeof(ReportBookToc).AssemblyQualifiedName;
ourBook.TocReportSource = tocReportSource;
ourBook.ReportSources.Add(new TypeReportSource
{
TypeName = typeof(TestPart).AssemblyQualifiedName
});
Telerik.Reporting.Processing.ReportProcessor rProc = new Telerik.Reporting.Processing.ReportProcessor();
Telerik.Reporting.InstanceReportSource irs = new Telerik.Reporting.InstanceReportSource();
System.Collections.Hashtable dinfo = new System.Collections.Hashtable();
irs.ReportDocument = ourBook;
Telerik.Reporting.Processing.RenderingResult result = rProc.RenderReport("PDF", irs, dinfo);
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);
fs.Close();
}the problem is TOC is empty.
here is result
Hi everyone, I'd appreciate any input on the following problem:
I have a crosstab with "sales period" as column group, and the detail value is sum of sales.
my report structure is pretty much identical to this demo: https://demos.telerik.com/reporting/product-sales
the only difference is that I will only compare 2 periods, and never more. that should make things hopefully easier. (in other words: a 'SELECT DISTINCT period' on the datasource will always return 2 values.)
Now I would like to show a sales index by comparing period1 to period2 in an additional column.
how can I do that?
I am facing a problem with report viewer, the pagination on report does not seem to work correctly although it shows all pages in Pagination section of report viewer but by click on next page does not seem to work and it shows all pages on every page. Please see the attach screenshot.
What the correct result for me is to show each page when I click on next page button not all pages.
I have created the following report it is not clear to see what id is which part of the donut chart.
I am not able to find how to make it clearer either by label or being able to created series label at the bottom of the report something like the following.
I would like to create a pie chart in a pivot as mentioned in the following Article:
https://www.telerik.com/blogs/impress-users-with-new-visualizations-in-telerik-reporting-q1-2013
I am on report designer 2016 R3 but however i am not sure how to set this up correctly. I currently have the following output but i would like this to be broken down to by each campaign, meaning we will get a pie chat for each campaign instead of the total.
i have used crosstab table with the pie chat within them.
I have a stacked bar chart in a cell in my table and I'm trying to rip as much out and make it as compact as possible... I have set the PlotAreaStyle background colour to be yellow in my screenshot below... How can I completely remove this space and make my chart more compact in the cell?

Hello everyone,
I have a problem with my Web Report Designer project. On my local machine everything works fine but when i deploy it on the IIS serve, I receive this error:
http://localhost/reportdesigner/resources/js/telerikReportViewer/ net::ERR_ABORTED 500 (Internal Server Error)
WebReportDesigner:40 GET http://localhost/reportdesigner/designerresources/js/webReportDesigner/ net::ERR_ABORTED 500 (Internal Server Error)
WebReportDesigner:39 GET http://localhost/reportdesigner/resources/js/telerikReportViewer/ net::ERR_ABORTED 500 (Internal Server Error)
WebReportDesigner:40 GET http://localhost/reportdesigner/designerresources/js/webReportDesigner/ net::ERR_ABORTED 500 (Internal Server Error)
WebReportDesigner:44 Uncaught TypeError: $(...).telerik_WebReportDesigner is not a function
at HTMLDocument.<anonymous> (WebReportDesigner:44)
at i (jquery.min.js:2)
at Object.fireWith [as resolveWith] (jquery.min.js:2)
at Function.ready (jquery.min.js:2)
at HTMLDocument.K (jquery.min.js:2)
(anonymous) @ WebReportDesigner:44
i @ jquery.min.js:2
fireWith @ jquery.min.js:2
ready @ jquery.min.js:2
K @ jquery.min.js:2
This is my Index.cshtml
<head>
<title>Web Report Designer</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap" rel="stylesheet">
</head>
<body>
<div id="webReportDesigner">
loading...
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2020.3.1118/js/kendo.all.min.js"></script>
<script src="/api/reportdesigner/resources/js/telerikReportViewer/"></script>
<script src="/api/reportdesigner/designerresources/js/webReportDesigner/"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#webReportDesigner").telerik_WebReportDesigner({
toolboxArea: {
layout: "list"
},
serviceUrl: "/api/reportdesigner",
report: "20201130 Partner Commissions.trdp"
}).data("telerik_WebDesigner");
});
</script>
</body>
This is my controller :
{
[Route("api/reportdesigner")]
public class ReportDesignerController : ReportDesignerControllerBase
{
public ReportDesignerController(IReportDesignerServiceConfiguration reportDesignerServiceConfiguration, IReportServiceConfiguration reportServiceConfiguration)
: base(reportDesignerServiceConfiguration, reportServiceConfiguration)
{
}
}
}
I would appreciate if anyone could help me. Thanks and have a nice day!
I forgot to mention, I am a beginner with Telerik reporting and everything related to it.
I want to upgrade version of following telerik assemblies -
1. Telerik.Reporting.dll
2. Telerik.Reporting.OpenXmlRendering.dll
3.Telerik.Reporting.XpsRendering.dll
4.Telerik.ReportViewer.Html5.WebForms.dll
I have removed these 4 existing dlls and replaced them with upgraded version files and added references. Previously in my project Telerik.ReportViewer.Html5.WebForms.dll was not exist and Telerik.ReportViewer.WebForms.dll was there, so I have removed Telerik.ReportViewer.WebForms.dll and I have added Telerik.ReportViewer.Html5.WebForms.dll.
Its giving errors on multiple files.
Anyone can help me ?
Kind regards,
Payal

Hi ,
I am writing because the Telerik PDF VIEWER is not showing a correct text selection when I load the issue.pdf file. This file works correctly with other pdf viewers like Microsoft Edge , Chrome , and others . The issue.jpg attached file is the issue.pdf with the extension changed. Pleased change it again to view it.
You can try with the "Telerik UI for WPF - Demos.appref-ms" app . There you can see an attached picture of the issue: "issue.pic.png".
Do you know the reason for this problem?
Best,
