summaryrefslogtreecommitdiff
path: root/xmlPivotTable.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2019-10-16 01:03:29 +0800
committerxuri <xuri.me@gmail.com>2019-10-17 00:02:39 +0800
commit2e791fa433def282ee2e7a5049a46fc4a76796cf (patch)
tree8d0ad49e63d7154b1ba6687f6d289cfb1d0d2643 /xmlPivotTable.go
parent2d21b5b50f30ae9868b2f8b1f7299ceefcf87fd2 (diff)
Optimize code of Getting/Setting Page Margins
Diffstat (limited to 'xmlPivotTable.go')
-rw-r--r--xmlPivotTable.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlPivotTable.go b/xmlPivotTable.go
index 3738ed8..0549c5e 100644
--- a/xmlPivotTable.go
+++ b/xmlPivotTable.go
@@ -125,7 +125,7 @@ type xlsxPivotField struct {
UniqueMemberProperty string `xml:"uniqueMemberProperty,attr,omitempty"`
Compact bool `xml:"compact,attr"`
AllDrilled bool `xml:"allDrilled,attr,omitempty"`
- NumFmtId string `xml:"numFmtId,attr,omitempty"`
+ NumFmtID string `xml:"numFmtId,attr,omitempty"`
Outline bool `xml:"outline,attr"`
SubtotalTop bool `xml:"subtotalTop,attr,omitempty"`
DragToRow bool `xml:"dragToRow,attr,omitempty"`
@@ -273,7 +273,7 @@ type xlsxDataField struct {
ShowDataAs string `xml:"showDataAs,attr,omitempty"`
BaseField int `xml:"baseField,attr,omitempty"`
BaseItem int64 `xml:"baseItem,attr,omitempty"`
- NumFmtId string `xml:"numFmtId,attr,omitempty"`
+ NumFmtID string `xml:"numFmtId,attr,omitempty"`
ExtLst *xlsxExtLst `xml:"extLst"`
}