diff options
author | Alex Whitney <alex@itshalfempty.com> | 2018-07-24 16:12:26 -0400 |
---|---|---|
committer | Alex Whitney <alex@itshalfempty.com> | 2018-07-25 10:47:14 -0400 |
commit | db7a605cf8384f86dd3d3f766050a201b5f10eec (patch) | |
tree | d5b0077081fd5c020354dab6f62d93acfb3d042b /xmlWorksheet.go | |
parent | a885bb0fb92dd7a55f27f0fd57d174121db79b0f (diff) |
Use min/mid/max value for 2 and 3 color scale conditional formatting
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 37c0d18..87d66a1 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -446,7 +446,7 @@ type xlsxIconSet struct { type xlsxCfvo struct { Gte bool `xml:"gte,attr,omitempty"` Type string `xml:"type,attr,omitempty"` - Val int `xml:"val,attr"` + Val string `xml:"val,attr"` ExtLst *xlsxExtLst `xml:"extLst"` } |