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
-
- Posts: 8
- Joined: Mon Dec 08, 2008 4:53 am
- Location: India
-
- Posts: 8
- Joined: Mon Dec 08, 2008 4:53 am
- Location: India
SubReport Overlapping
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
-
- Posts: 8
- Joined: Mon Dec 08, 2008 4:53 am
- Location: India
SubReport Overlapping
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.
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.