Page 1 of 1

SubReport Overlapping

Posted: Tue Jan 13, 2009 3:14 am
by jaiprakasho
I have a report master/Detail. The master contains field "Notes" being one of them which has the property [Can Grow] & [Word wrap] set to true. Also it is the last field before the sub report begins. The sub report may contain any no of chart images as picked from database. Now the problem is that the subreport /Chart is covering the notes when the notes is big.
Any solution to this. Thanks in advance.

SubReport Overlapping

Posted: Tue Jan 13, 2009 3:38 am
by jaiprakasho
I have tried another way . I placed the sub report on a panel on the databand after the "notes" field . The problem of overlapping was solved but now another problem is that the charts are getting cut if it not fitting on any page. Is there any other way to solve the problem. thnks

SubReport Overlapping

Posted: Tue Jan 13, 2009 11:56 pm
by Vital
Hello,

Please send your report file for examination to support@stimulsoft.com.

Thank you.

SubReport Overlapping

Posted: Wed Jan 14, 2009 5:09 am
by jaiprakasho
i have solved the problem by docking the sub report to the bottom.

here the code:

StiDataBand dataBand1 = report.Pages[@"Page1"].Components[@"DataBand1"] as Stimulsoft.Report.Components.StiDataBand;
dataBand1.Height = subReport.Top + 1;
subReport.Dock = DockStyle.Bottom;


Thanks.