diff options
author | xuri <xuri.me@gmail.com> | 2019-12-28 15:05:44 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-12-28 15:05:44 +0800 |
commit | 8b960ee1e624bd2776a351a4a3b2ad04c29bae9a (patch) | |
tree | 6eef967a11bf69477fa8b00d3229e5aa03d4d555 /xmlWorksheet.go | |
parent | 5f3a4bc39f9cf2987104ffe57242a0526cdd9158 (diff) |
Fix #547 and #546, add default overlay element for the chart
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 57fd43f..c17d12f 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -475,7 +475,7 @@ func (c *xlsxC) hasValue() bool { // http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have // not checked it for completeness - it does as much as I need. type xlsxF struct { - Content string `xml:",chardata"` + Content string `xml:",innerxml"` T string `xml:"t,attr,omitempty"` // Formula type Ref string `xml:"ref,attr,omitempty"` // Shared formula ref Si string `xml:"si,attr,omitempty"` // Shared formula index |