diff options
author | xuri <xuri.me@gmail.com> | 2019-12-10 00:16:17 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-12-10 00:16:17 +0800 |
commit | 08d1a86c3a1bffdf431dba6a3d5a3b369ef740a7 (patch) | |
tree | 53131c19de79a5980d9a95cb543c2487887d9980 /xmlTable.go | |
parent | 842b942c71df8a7bcc6e8f32232851679bd6a090 (diff) |
Fix #523, add stream writer for generate new worksheet with huge amounts of data
Diffstat (limited to 'xmlTable.go')
-rw-r--r-- | xmlTable.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlTable.go b/xmlTable.go index ca4ce03..017bda1 100644 --- a/xmlTable.go +++ b/xmlTable.go @@ -44,6 +44,7 @@ type xlsxTable struct { // applied column by column to a table of data in the worksheet. This collection // expresses AutoFilter settings. type xlsxAutoFilter struct { + XMLName xml.Name `xml:"autoFilter"` Ref string `xml:"ref,attr"` FilterColumn *xlsxFilterColumn `xml:"filterColumn"` } |