Question

I am trying to generate an dynamic excel file using phpexcel. Is it possible to avoid grid lines in the output?

Was it helpful?

Solution

Try this,

$objPhpExcel->getActiveSheet()->setShowGridlines(false);

this work for me...

OTHER TIPS

Try this :

$objPhpExcel->getActiveSheet()->setShowGridlines(False);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top