diff options
author | Eugene Androsov <53434131+EugeneAndrosovPaser@users.noreply.github.com> | 2020-09-10 19:45:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 00:45:52 +0800 |
commit | 97bffe608dfefe69a64fb450ae654ca798c710db (patch) | |
tree | 5e8051c2139f556430000ef370737a9a6bdeeb9c /xmlPivotCache.go | |
parent | 01afc6e03f1d28f1806ecd1f3c6c043f6755bd01 (diff) |
Extend pivot table funtionality (#692)
Add different pivot options
Add header options to pivot table opts
Add Style name options to pivot table opts
Diffstat (limited to 'xmlPivotCache.go')
-rw-r--r-- | xmlPivotCache.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/xmlPivotCache.go b/xmlPivotCache.go index feaec54..58d977a 100644 --- a/xmlPivotCache.go +++ b/xmlPivotCache.go @@ -182,6 +182,20 @@ type xlsxError struct { // xlsxString represents a character value in a PivotTable. type xlsxString struct { + V string `xml:"v,attr"` + U bool `xml:"u,attr,omitempty"` + F bool `xml:"f,attr,omitempty"` + C string `xml:"c,attr,omitempty"` + Cp int `xml:"cp,attr,omitempty"` + In int `xml:"in,attr,omitempty"` + Bc string `xml:"bc,attr,omitempty"` + Fc string `xml:"fc,attr,omitempty"` + I bool `xml:"i,attr,omitempty"` + Un bool `xml:"un,attr,omitempty"` + St bool `xml:"st,attr,omitempty"` + B bool `xml:"b,attr,omitempty"` + Tpls *xlsxTuples `xml:"tpls"` + X *attrValInt `xml:"x"` } // xlsxDateTime represents a date-time value in the PivotTable. |