遍历图表
Last updated
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$excel->openFile('source.xlsx');
$excel->iterateCharts(function (array $chart) {
echo "图表类型 {$chart['type']}, 标题 {$chart['title']}\n";
foreach ($chart['series'] as $s) {
echo " 系列 {$s['name']}: {$s['values']}\n";
}
}, 'Sheet1');