PHPOffice / PHPExcel

ARCHIVED
Other
11.46k stars 4.2k forks source link

HTML output show column names and row numbers #1306

Open M-Shahbaz opened 6 years ago

M-Shahbaz commented 6 years ago

I am using PHPExcel, which requires to display excel file as HTML using:

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML'); $objWriter->save('php://output');

Is there any way to show column names i.e (A , B , C ... ) on HTML table header and row numbers (1, 2 , 3 ...) on left side like the excel sheet.

Thanks!