From 97bffe608dfefe69a64fb450ae654ca798c710db Mon Sep 17 00:00:00 2001 From: Eugene Androsov <53434131+EugeneAndrosovPaser@users.noreply.github.com> Date: Thu, 10 Sep 2020 19:45:52 +0300 Subject: Extend pivot table funtionality (#692) Add different pivot options Add header options to pivot table opts Add Style name options to pivot table opts --- xmlPivotCache.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'xmlPivotCache.go') 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. -- cgit v1.2.1