/* custom code to hide or show grid line */
protected $showGridLines;/*custom code to hide or show grid line */
public function __construct()
{
if(!ini_get('date.timezone'))
{
//using date functions can kick out warning if this isn't set
date_default_timezone_set('UTC');
}
$this->addCellStyle($number_format='GENERAL', $style_string=null);
$this->addCellStyle($number_format='GENERAL', $style_string=null);
$this->addCellStyle($number_format='GENERAL', $style_string=null);
$this->addCellStyle($number_format='GENERAL', $style_string=null);
$this->setShowGridLines('true');/*custom code to hide or show grid line */
}
/*Added by on 29042019 custom code to hide or show grid line */
public function setShowGridLines($show=true) { $this->showGridLines=$show; }
public function getShowGridLines() { return $this->showGridLines; }
/*Added by on 29042019 custom code to hide or show grid line */
Usage : $writer = new XLSXWriter(); $writer->setShowGridLines('false');