Hi Dojo,
I’m currently using an Automation Script to send an email with an attached dashboard report. The report is generated and sent entirely from code using the following approach:
MailReportOptions reportOptions = engine.PrepareMailReport(dashboardRelativePath);
reportOptions.SetMailOptions(emailOptions);
engine.SendReport(reportOptions);
This setup works as expected. However, I would like to know if it’s possible to configure the paper format of the generated dashboard report. This needs to be done in the code as well.
In our specific case, customer wants to receive report in A3 format.
Is there a way to control or override the paper size (e.g., A3) from within the Automation Script?