Typically when you create this report and expand a particulat row during the drilldown( toggle) it will expand horizontally.
Is to possible to expand it vertically, so that actual page size remains fixed and report can grow in height.
See the layout of report in the attached file.
Any suggstion how this can be accomplished.
private void radButton1_Click(object sender, RoutedEventArgs e) { reportViewer1.UseNativePrinting = false; reportViewer1.Report = null; reportViewer1.Report = "TelerikNoPreview.Web.Report1,TelerikNoPreview.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"; // Wait for complete here // The following would be nice in a RenderCompleted event handler if one existed var layoutRoot = (FrameworkElement)VisualTreeHelper.GetChild(reportViewer1, 0); var viewerModel = (ReportViewerModel)layoutRoot.DataContext; var printCommand = viewerModel.PrintReportCommand; if (printCommand.CanExecute(null)) { printCommand.Execute(null); } }I need to create reports with 2 levels of details. For example:
(top level): Name, SSN, Address
(1st level down): Account type, Account number
(2nd level down): Deposit/Withdrawl amount, date, payee
Can the infragistics report tool perform this?
Can there be multiple parent/child/grandchild hierarchies in the same report?
---
Also, can the data-source for this report be a hierarchical (in this case, 1 parent level + child levels + grandchild levels) xml file? How is the reported to the structure of the xml file?
Thanks!