Search code examples
phpcodeigniter-2phpexcel

Avoiding gridlines in phpexcel


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


Solution

  • Try this,

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

    this work for me...