Hello,
In ReportController override method -
public override HttpResponseMessage CreateInstance(string clientID, ClientReportSource reportSource)
reportSource.Report gives the required report file name - which is as expected.
However, when same method is called for a sub-report then reportSource.Report returns complete server path of the sub-report rather than only the report file name.
Being new to Telerik, I am not sure if this is the default behaviour.
Is there any way I can change this to only receive the sub-report file name?
Thank you!
I am creating a book table of context. Reading the information on Table of Context (https://docs.telerik.com/reporting/table-of-contents) it seems all I need to do is add the field name to the TocText property.
When I create the book, the table of context does not automatically assign the style levels to the groups, all the entries seem to be using Style 1. Is there something I need to configure in the TocText property or elsewhere?
I have been given the task to look at a pdf export that can now export in languages with non latin characters (e.g. chinese/japanese/etc)
the exports just show squares instead of the characters which are displayed correctly in the preview.
I believe I need to embed a suitable font but I'm not having much luck. Am I missing something or approaching the problem in the wrong way?
My export function looks like this:
exportPdf: function (domElementId, fileName, landscape) {
kendo.pdf.defineFont({
"unicode-font": '../fonts/Unicode/unicode-font.ttf'
});
kendo.drawing.drawDOM('#' + domElementId, {
forcePageBreak: ".page-break",
paperSize: "A4",
landscape: typeof landscape !== 'undefined' ? landscape : false,
margin: "1cm",
template: $("#pdf-page-template").html(),
})
.then(function (group) {
return kendo.drawing.exportPDF(group, {});
})
.done(function (data) {
kendo.saveAs({
dataURI: data,
fileName: fileName + ".pdf"
});
});
}
I'm wondering if the relative path is the problem but I don't see any errors. I didn't set this up and have very little experience with your tools so I'm sure I am just missing something obvious.
Thanks for your help.
Telerik.Reporting Nuget package contains assembly Telerik.Reporting.OpenXmlRendering.2.7.2.dll.
This assembly requires installed DocumentFormat.OpenXml v2.7.2. But this dependency is missing in Telerik.Reporting.nuspec.
I want to make it so that if there is only one available option for a report parameter then it isn't visible.
Right now the best I can do is have it just have it select the first item and have the user ignore the drop down if they don't need it.
I apologize if an example of what I would like to do is in another thread. I tried searching for something similar but
I have a customer that would like to zoom in on the data points of a graph. I told them that I don't think that capability exists, but I could adjust the range of the graph so that they could better see where each data point exists in the swim lanes.
What I would like to do is either offset the data point labels that are off the chart, or create an x axis at the top of the graph containing the data point value for each week in the series. Is this feasible?