We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c66baa4 commit e02f25bCopy full SHA for e02f25b
src/PhpSpreadsheet/Reader/Xlsx.php
@@ -226,7 +226,10 @@ public function listWorksheetInfo($filename)
226
$worksheets = [];
227
foreach ($relsWorkbook->Relationship as $elex) {
228
$ele = self::getAttributes($elex);
229
- if ((string) $ele['Type'] === "$namespace/worksheet") {
+ if (
230
+ ((string) $ele['Type'] === "$namespace/worksheet") ||
231
+ ((string) $ele['Type'] === "$namespace/chartsheet")
232
+ ) {
233
$worksheets[(string) $ele['Id']] = $ele['Target'];
234
}
235
0 commit comments