Add missing element `xfId` of the styles to fix issue #93.

formula
Ri Xu 8 years ago
parent 6626a26f7b
commit 5cf3725f02
No known key found for this signature in database
GPG Key ID: BA5E5BB1C948EDF7

@ -2122,6 +2122,8 @@ func setCellXfs(style *xlsxStyleSheet, fontID, numFmtID, fillID, borderID int, a
style.CellXfs.Count++ style.CellXfs.Count++
xf.Alignment = alignment xf.Alignment = alignment
xf.ApplyAlignment = applyAlignment xf.ApplyAlignment = applyAlignment
xfID := 0
xf.XfID = &xfID
style.CellXfs.Xf = append(style.CellXfs.Xf, xf) style.CellXfs.Xf = append(style.CellXfs.Xf, xf)
return style.CellXfs.Count - 1 return style.CellXfs.Count - 1
} }

@ -211,7 +211,7 @@ type xlsxXf struct {
NumFmtID int `xml:"numFmtId,attr"` NumFmtID int `xml:"numFmtId,attr"`
PivotButton bool `xml:"pivotButton,attr,omitempty"` PivotButton bool `xml:"pivotButton,attr,omitempty"`
QuotePrefix bool `xml:"quotePrefix,attr,omitempty"` QuotePrefix bool `xml:"quotePrefix,attr,omitempty"`
XfID *int `xml:"xfId,attr,omitempty"` XfID *int `xml:"xfId,attr"`
Alignment *xlsxAlignment `xml:"alignment"` Alignment *xlsxAlignment `xml:"alignment"`
Protection *xlsxProtection `xml:"protection"` Protection *xlsxProtection `xml:"protection"`
} }

Loading…
Cancel
Save