Hi Peter, I was able to change the PDF page orientation from Portrait to Landscape in the config.php of our reports directory, but the font size doesn't seem to change. Is it possible to change the font size for a PDF report in config.php? I have the followings settings in the config.php:
ReporticoApp::setConfig('pdf_PageSize','A4');
ReporticoApp::setConfig('pdf_PageOrientation','Landscape');
ReporticoApp::setConfig('pdf_TopMargin','2cm');
ReporticoApp::setConfig('pdf_BottomMargin','2cm');
ReporticoApp::setConfig('pdf_LeftMargin','1cm');
ReporticoApp::setConfig('pdf_RightMargin','1cm');
ReporticoApp::setConfig('pdf_pdfFont','Helvetica');
ReporticoApp::setConfig('pdf_pdfFontSize','12');
and in reportico.php:
'pdf_engine' => "tcpdf",