i am trying to export the few tables and charts to pdf using mpdf, but only tables are displayed in pdf chart section is showing blank. can anyone help??
i have tried below code.
$str = $this->load->view('admin/ticketing/ticketing_report_pdf',$arrData,true);
$mpdf->AddPage('','NEXT-ODD','','1','off');
$mpdf->use_kwt = true;
$mpdf->shrink_tables_to_fit=1;
$mpdf->useDefaultCSS3 = true;
$mpdf->allow_charset_conversion = true;
$mpdf->charset_in = 'iso-8859-4';
$mpdf->WriteHTML($str);
$mpdf->Output($pdfFilePath,'D');
and chart is generated using js..