PhpSpreadsheet/samples/33_Chart_create_bar.php
Adrien Crivelli 2922a13764
Reorganize code samples
This introduce a helper class that should be used to log things,
avoiding a lot of boilerplate code.

Also all output are made in /tmp folder instead of beside the script
itself. This is because there is a high chance that the folder containing
the script is not writtable by webserver. So using the /tmp folder
makes it more likely to works in a variety of setup.
2016-09-01 01:17:13 +09:00

15 lines
426 B
PHP

<?php
/** PhpSpreadsheet */
require __DIR__ . '/Header.php';
$spreadsheet = require __DIR__ . '/templates/chartSpreadsheet.php';
// Save Excel 2007 file
$filename = $helper->getFilename(__FILE__);
$writer = \PhpSpreadsheet\IOFactory::createWriter($spreadsheet, 'Excel2007');
$writer->setIncludeCharts(true);
$callStartTime = microtime(true);
$writer->save($filename);
$helper->logWrite($writer, $filename, $callStartTime);