Hi Everyone,
Is there some way to control font-size in exported PDF?
I am using the following code to generate PDF successfully, Just want to change font-size of main content of pdf.
<?php
$dataStore = $this->dataStore('grid');
PivotTable::create(array(
"dataStore"=>$dataStore,
"rowDimension"=>"row",
"columnDimension"=>"column",
'headerMap' => array(
'order_yr - count' => 'Order Type / Year',
),
));
?>
Please let me now how to control font size in PDF export. Thanks