The ouput of printing reports with subreports added using the SubReports property gets scaled.
You can test it very easily using the sample program "PrintTable" which is supplied by stimulsoft.
Replace the line 224 in Form1.cs from
Code: Select all
report.Show();
Code: Select all
Stimulsoft.Report.StiReport mainreport = new StiReport();
mainreport.SubReports.Add(report);
mainreport.Print();
When printing by pushing the button on the toolbar, the output is correct.