or
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
);
}
}