diff options
author | xuri <xuri.me@gmail.com> | 2019-10-16 01:03:29 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-10-17 00:02:39 +0800 |
commit | 2e791fa433def282ee2e7a5049a46fc4a76796cf (patch) | |
tree | 8d0ad49e63d7154b1ba6687f6d289cfb1d0d2643 /xmlPivotTable.go | |
parent | 2d21b5b50f30ae9868b2f8b1f7299ceefcf87fd2 (diff) |
Optimize code of Getting/Setting Page Margins
Diffstat (limited to 'xmlPivotTable.go')
-rw-r--r-- | xmlPivotTable.go | 4 |
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"` } |