diff options
author | xuri <xuri.me@gmail.com> | 2020-05-03 18:44:43 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-05-03 18:44:43 +0800 |
commit | 48fc4c08a2a80f7826d20bf3fd5a018f8e6f3185 (patch) | |
tree | fb5b635720a3289a070785b4687560974d32706f /xmlChartSheet.go | |
parent | 2285d4dc718fb8b96c3b2291c63b39c57468b0b9 (diff) |
init formula calculation engine, ref #65 and #599
Diffstat (limited to 'xmlChartSheet.go')
-rw-r--r-- | xmlChartSheet.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlChartSheet.go b/xmlChartSheet.go index fae5a16..30a0693 100644 --- a/xmlChartSheet.go +++ b/xmlChartSheet.go @@ -51,7 +51,7 @@ type xlsxChartsheetView struct { XMLName xml.Name `xml:"sheetView"` TabSelectedAttr bool `xml:"tabSelected,attr,omitempty"` ZoomScaleAttr uint32 `xml:"zoomScale,attr,omitempty"` - WorkbookViewIdAttr uint32 `xml:"workbookViewId,attr"` + WorkbookViewIDAttr uint32 `xml:"workbookViewId,attr"` ZoomToFitAttr bool `xml:"zoomToFit,attr,omitempty"` ExtLst []*xlsxExtLst `xml:"extLst"` } @@ -78,7 +78,7 @@ type xlsxCustomChartsheetViews struct { // xlsxCustomChartsheetView defines custom view properties for chart sheets. type xlsxCustomChartsheetView struct { XMLName xml.Name `xml:"customChartsheetView"` - GuidAttr string `xml:"guid,attr"` + GUIDAttr string `xml:"guid,attr"` ScaleAttr uint32 `xml:"scale,attr,omitempty"` StateAttr string `xml:"state,attr,omitempty"` ZoomToFitAttr bool `xml:"zoomToFit,attr,omitempty"` |