summaryrefslogtreecommitdiff
path: root/xmlStyles.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-07-14 21:15:44 +0800
committerRi Xu <xuri.me@gmail.com>2017-07-14 21:15:44 +0800
commitbc31e545c8458d882ff6659ea3ca5e7a598d8789 (patch)
treed83e3a302061b820082d656197710cc71b0a30b7 /xmlStyles.go
parent20aae4e0e6e9d40a35a1d6ef6e3f357afdda0605 (diff)
- Currency format supported, relate issue #80;
- go test and godoc updated
Diffstat (limited to 'xmlStyles.go')
-rw-r--r--xmlStyles.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmlStyles.go b/xmlStyles.go
index 4e7a7d1..58f3fc8 100644
--- a/xmlStyles.go
+++ b/xmlStyles.go
@@ -317,5 +317,7 @@ type formatCellStyle struct {
Vertical string `json:"vertical"`
WrapText bool `json:"wrap_text"`
} `json:"alignment"`
- NumFmt int `json:"number_format"`
+ NumFmt int `json:"number_format"`
+ DecimalPlaces int `json:"decimal_places"`
+ Lang string `json:"lang"`
}