I apologize if I missed this in the documentation or forums, but I can't seem to find any solid information on using a graph with custom visuals in Telerik Reporting. I see an example of custom visuals using the Drawing API.
https://demos.telerik.com/kendo-ui/bar-charts/visuals
How can I use this custom graph or another in a Telerik Report? Is it possible? I would prefer to use Visual Studio over the standalone reporting tool.
Thanks,
AJ
Hello, after I have updated WPF Controls and Telerik.Reporting libraries from Q2 2014 to Q1 2016 (WPF NoXAML 2016 Q1), I can't see any data in my reports (except table headers). But there are some errors in output window:
*** ProcessReport #0 STARTED ***
Exception thrown: 'System.OperationCanceledException' in mscorlib.dll
Exception thrown: 'System.OperationCanceledException' in Telerik.Reporting.dll
Exception thrown: 'System.OperationCanceledException' in Telerik.Reporting.dll
*** ProcessReport #0 DONE in 00:00:00.1307766 ***
In my code I do something like this:
var reportSource = new InstanceReportSource {ReportDocument = rep};
reportview.ReportSource = reportSource;
reportview.RefreshReport();
Please help me to solve this problem! Thanks
Hi All,
I am trying to make this expression in textbox1 in the report header "= IsNull(Sum(IsNull(Fields.part1,0) - IsNull(Fields.part1,0) + IsNull(Fields.part3,0)),0)" where part1 ,part2 and part3 come from datasource1
And I have in a table the detailed section, its datasource is datasource1
this make result in table duplicated more times
any suggestion for setting textbox1 with different way ??
Hi, can please someone tell me how
can I put a sorting criterion in a totals column in a Crosstab.
I'm using the Visual Studio Report Designer.
Thank you.
Luis Cruz
NCR Angola
Hello,
I'm using wpf reporting and I faced to problem: when the height of the top table increases, it begins to cover the bottom table. What I need to do is to keep the distance between them, and I don't know how to do it. I tried doing that using itemdatabinding event
private void OnItemDataBinding(object sender, EventArgs args)
{
table1.Location = new PointU(Unit.Cm(0.0D), Unit.Cm(1.2D + table2.Height.Value));
}
but it doesn't work, because table2's actual height is unknown until report wasn't generated.
So are there any ways to do it?
Thanks,
Ivan
Hi All,
I am trying to make parameter at report its initial value passed from the code as a parameter
when I set the value field in the "report parameter editor" = Parameters.param2.Value , the initial value became empty after running the report
The type of 2 parameters is string , one has datasource and the other witch passed from code didn't have
any suggestion for solution??
Hi,
Hello, i'm new in telerik. I want to ask, why when i download the Telerik Reporting (R2 2016) to Excel the header and footer in print preview is just in page 1?
I'm using "Page Header" and "Page Footer" to set header and footer in telerik, when i download in PDF its fine, the header show in every page in print preview. Why just in Excel i cant see the header and footer in the every page?
Best Regards,
Julian Agam Riantiadi

All of my reports shown in the report viewer in my MVC site.
However there is a need to add my own event to the viewer. (i.e. I will add a new button to the view).
My question is how can I get the report name and report parameters via javascript? I will need this information to pass back to my controller to do my own "custom" action.