Add missing element `xfId` of the styles to fix issue #93.
This commit is contained in:
parent
6626a26f7b
commit
5cf3725f02
|
@ -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…
Reference in New Issue