phpExcel 파일저장시 Chart 관련

phpExcel 에서 Excel 2007 파일로 .xlsx 확장자로 저장하는 방법이다.

그래프 즉 차트를 엑셀에 포함하고자 한다면

$objWriter->setIncludeCharts(TRUE); 를 추가해줘야 한다.

 

header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="excel_report_p3_'.$day.'.xlsx"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->setIncludeCharts(TRUE);
$objWriter->save('php://output');
phpExcel 파일저장시 Chart 관련
Scroll to top