I am trying to generate an dynamic excel file using phpexcel. Is it possible to avoid grid lines in the output?
Try this,
$objPhpExcel->getActiveSheet()->setShowGridlines(false);
this work for me...