diff options
author | xuri <xuri.me@gmail.com> | 2018-07-26 09:46:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 09:46:26 +0800 |
commit | cddcf852c282e4212bc2e90720ed55640fb86847 (patch) | |
tree | d5b0077081fd5c020354dab6f62d93acfb3d042b /xmlWorksheet.go | |
parent | a3571ee39bec82d15d9a183aed7f7db39e0a160f (diff) | |
parent | db7a605cf8384f86dd3d3f766050a201b5f10eec (diff) |
Merge pull request #253 from alex-whitney/252-color-scale-cond-formatting
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"` } |