Hi
When I try to print my report in pdf the font-size stays small.
I've tried
select 'dbr.wkhtmltopdf','font-size',12;
and
select 'dbr.export.options','font_size',12;
both without succes. Any idea how to solve this?
Hi
When I try to print my report in pdf the font-size stays small.
I've tried
select 'dbr.wkhtmltopdf','font-size',12;
and
select 'dbr.export.options','font_size',12;
both without succes. Any idea how to solve this?
Johan,
when you export to PDF using wkhtmltopdf, it uses the CSS defined in the page. Easiest way of incresing the font size is to use zoom_scale option.
select 'dbr.export.options', 'zoom_scale', 120;
Will use 120% zoom.
Alternatively, you can use CSS to use bigger fonts (you can detect when PDF export is done via automatic parameter inExportFormat).
--
myDBR Team
ok I'll try that.
Thanks
You must log in to post.