2017-03-06 12:05:41 +08:00
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"encoding/xml"
|
2017-05-05 14:40:28 +08:00
|
|
|
"fmt"
|
|
|
|
"math"
|
2017-03-06 12:05:41 +08:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2017-04-07 17:32:14 +08:00
|
|
|
// Excel styles can reference number formats that are built-in, all of which
|
|
|
|
// have an id less than 164. This is a possibly incomplete list comprised of as
|
|
|
|
// many of them as I could find.
|
|
|
|
var builtInNumFmt = map[int]string{
|
|
|
|
0: "general",
|
|
|
|
1: "0",
|
|
|
|
2: "0.00",
|
|
|
|
3: "#,##0",
|
|
|
|
4: "#,##0.00",
|
|
|
|
9: "0%",
|
|
|
|
10: "0.00%",
|
|
|
|
11: "0.00e+00",
|
|
|
|
12: "# ?/?",
|
|
|
|
13: "# ??/??",
|
|
|
|
14: "mm-dd-yy",
|
|
|
|
15: "d-mmm-yy",
|
|
|
|
16: "d-mmm",
|
|
|
|
17: "mmm-yy",
|
|
|
|
18: "h:mm am/pm",
|
|
|
|
19: "h:mm:ss am/pm",
|
|
|
|
20: "h:mm",
|
|
|
|
21: "h:mm:ss",
|
|
|
|
22: "m/d/yy h:mm",
|
|
|
|
37: "#,##0 ;(#,##0)",
|
|
|
|
38: "#,##0 ;[red](#,##0)",
|
|
|
|
39: "#,##0.00;(#,##0.00)",
|
|
|
|
40: "#,##0.00;[red](#,##0.00)",
|
|
|
|
41: `_(* #,##0_);_(* \(#,##0\);_(* "-"_);_(@_)`,
|
|
|
|
42: `_("$"* #,##0_);_("$* \(#,##0\);_("$"* "-"_);_(@_)`,
|
|
|
|
43: `_(* #,##0.00_);_(* \(#,##0.00\);_(* "-"??_);_(@_)`,
|
|
|
|
44: `_("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)`,
|
|
|
|
45: "mm:ss",
|
|
|
|
46: "[h]:mm:ss",
|
|
|
|
47: "mmss.0",
|
|
|
|
48: "##0.0e+0",
|
|
|
|
49: "@",
|
|
|
|
}
|
|
|
|
|
2017-05-05 14:40:28 +08:00
|
|
|
// builtInNumFmtFunc defined the format conversion functions map. Partial format
|
|
|
|
// code doesn't support currently and will return original string.
|
|
|
|
var builtInNumFmtFunc = map[int]func(i int, v string) string{
|
|
|
|
0: formatToString,
|
|
|
|
1: formatToInt,
|
|
|
|
2: formatToFloat,
|
|
|
|
3: formatToInt,
|
|
|
|
4: formatToFloat,
|
|
|
|
9: formatToC,
|
|
|
|
10: formatToD,
|
|
|
|
11: formatToE,
|
|
|
|
12: formatToString, // Doesn't support currently
|
|
|
|
13: formatToString, // Doesn't support currently
|
|
|
|
14: parseTime,
|
|
|
|
15: parseTime,
|
|
|
|
16: parseTime,
|
|
|
|
17: parseTime,
|
|
|
|
18: parseTime,
|
|
|
|
19: parseTime,
|
|
|
|
20: parseTime,
|
|
|
|
21: parseTime,
|
|
|
|
22: parseTime,
|
|
|
|
37: formatToA,
|
|
|
|
38: formatToA,
|
|
|
|
39: formatToB,
|
|
|
|
40: formatToB,
|
|
|
|
41: formatToString, // Doesn't support currently
|
|
|
|
42: formatToString, // Doesn't support currently
|
|
|
|
43: formatToString, // Doesn't support currently
|
|
|
|
44: formatToString, // Doesn't support currently
|
|
|
|
45: parseTime,
|
|
|
|
46: parseTime,
|
|
|
|
47: parseTime,
|
|
|
|
48: formatToE,
|
|
|
|
49: formatToString,
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToString provides function to return original string by given built-in
|
|
|
|
// number formats code and cell string.
|
|
|
|
func formatToString(i int, v string) string {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToInt provides function to convert original string to integer format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToInt(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%d", int(f))
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToFloat provides function to convert original string to float format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToFloat(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%.2f", f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToA provides function to convert original string to special format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToA(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
if f < 0 {
|
|
|
|
t := int(math.Abs(f))
|
|
|
|
return fmt.Sprintf("(%d)", t)
|
|
|
|
}
|
|
|
|
t := int(f)
|
|
|
|
return fmt.Sprintf("%d", t)
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToB provides function to convert original string to special format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToB(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
if f < 0 {
|
|
|
|
return fmt.Sprintf("(%.2f)", f)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%.2f", f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToC provides function to convert original string to special format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToC(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
f = f * 100
|
|
|
|
return fmt.Sprintf("%d%%", int(f))
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToD provides function to convert original string to special format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToD(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
f = f * 100
|
|
|
|
return fmt.Sprintf("%.2f%%", f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatToE provides function to convert original string to special format as
|
|
|
|
// string type by given built-in number formats code and cell string.
|
|
|
|
func formatToE(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%.e", f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseTime provides function to returns a string parsed using time.Time.
|
|
|
|
// Replace Excel placeholders with Go time placeholders. For example, replace
|
|
|
|
// yyyy with 2006. These are in a specific order, due to the fact that m is used
|
|
|
|
// in month, minute, and am/pm. It would be easier to fix that with regular
|
|
|
|
// expressions, but if it's possible to keep this simple it would be easier to
|
|
|
|
// maintain. Full-length month and days (e.g. March, Tuesday) have letters in
|
|
|
|
// them that would be replaced by other characters below (such as the 'h' in
|
|
|
|
// March, or the 'd' in Tuesday) below. First we convert them to arbitrary
|
|
|
|
// characters unused in Excel Date formats, and then at the end, turn them to
|
|
|
|
// what they should actually be.
|
|
|
|
func parseTime(i int, v string) string {
|
|
|
|
f, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
val := timeFromExcelTime(f, false)
|
|
|
|
format := builtInNumFmt[i]
|
|
|
|
|
|
|
|
replacements := []struct{ xltime, gotime string }{
|
|
|
|
{"yyyy", "2006"},
|
|
|
|
{"yy", "06"},
|
|
|
|
{"mmmm", "%%%%"},
|
|
|
|
{"dddd", "&&&&"},
|
|
|
|
{"dd", "02"},
|
|
|
|
{"d", "2"},
|
|
|
|
{"mmm", "Jan"},
|
|
|
|
{"mmss", "0405"},
|
|
|
|
{"ss", "05"},
|
|
|
|
{"hh", "15"},
|
|
|
|
{"h", "3"},
|
|
|
|
{"mm:", "04:"},
|
|
|
|
{":mm", ":04"},
|
|
|
|
{"mm", "01"},
|
|
|
|
{"am/pm", "pm"},
|
|
|
|
{"m/", "1/"},
|
|
|
|
{"%%%%", "January"},
|
|
|
|
{"&&&&", "Monday"},
|
|
|
|
}
|
|
|
|
for _, repl := range replacements {
|
|
|
|
format = strings.Replace(format, repl.xltime, repl.gotime, 1)
|
|
|
|
}
|
|
|
|
// If the hour is optional, strip it out, along with the possible dangling
|
|
|
|
// colon that would remain.
|
|
|
|
if val.Hour() < 1 {
|
|
|
|
format = strings.Replace(format, "]:", "]", 1)
|
|
|
|
format = strings.Replace(format, "[3]", "", 1)
|
|
|
|
format = strings.Replace(format, "[15]", "", 1)
|
|
|
|
} else {
|
|
|
|
format = strings.Replace(format, "[3]", "3", 1)
|
|
|
|
format = strings.Replace(format, "[15]", "15", 1)
|
|
|
|
}
|
|
|
|
return val.Format(format)
|
|
|
|
}
|
|
|
|
|
2017-06-26 18:44:19 +08:00
|
|
|
// stylesReader provides function to get the pointer to the structure after
|
2017-06-29 13:28:44 +08:00
|
|
|
// deserialization of xl/styles.xml.
|
2017-06-26 18:44:19 +08:00
|
|
|
func (f *File) stylesReader() *xlsxStyleSheet {
|
|
|
|
if f.Styles == nil {
|
|
|
|
var styleSheet xlsxStyleSheet
|
|
|
|
xml.Unmarshal([]byte(f.readXML("xl/styles.xml")), &styleSheet)
|
|
|
|
f.Styles = &styleSheet
|
|
|
|
}
|
|
|
|
return f.Styles
|
|
|
|
}
|
|
|
|
|
|
|
|
// styleSheetWriter provides function to save xl/styles.xml after serialize
|
|
|
|
// structure.
|
|
|
|
func (f *File) styleSheetWriter() {
|
|
|
|
if f.Styles != nil {
|
|
|
|
output, _ := xml.Marshal(f.Styles)
|
|
|
|
f.saveFileList("xl/styles.xml", replaceWorkSheetsRelationshipsNameSpace(string(output)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-19 17:14:40 +08:00
|
|
|
// parseFormatStyleSet provides function to parse the format settings of the
|
2017-03-06 12:05:41 +08:00
|
|
|
// borders.
|
2017-03-19 17:14:40 +08:00
|
|
|
func parseFormatStyleSet(style string) (*formatCellStyle, error) {
|
|
|
|
var format formatCellStyle
|
|
|
|
err := json.Unmarshal([]byte(style), &format)
|
2017-03-06 12:05:41 +08:00
|
|
|
return &format, err
|
|
|
|
}
|
|
|
|
|
2017-06-29 19:41:00 +08:00
|
|
|
// NewStyle provides function to create style for cells by given style format.
|
|
|
|
// Note that the color field uses RGB color code.
|
2017-04-25 18:43:10 +08:00
|
|
|
//
|
2017-03-06 12:05:41 +08:00
|
|
|
// The following shows the border styles sorted by excelize index number:
|
|
|
|
//
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | Index | Name | Weight | Style |
|
|
|
|
// +=======+===============+========+=================+
|
|
|
|
// | 0 | None | 0 | |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 1 | Continuous | 1 | ``-----------`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 2 | Continuous | 2 | ``-----------`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 3 | Dash | 1 | ``- - - - - -`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 4 | Dot | 1 | ``. . . . . .`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 5 | Continuous | 3 | ``-----------`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 6 | Double | 3 | ``===========`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 7 | Continuous | 0 | ``-----------`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 8 | Dash | 2 | ``- - - - - -`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 9 | Dash Dot | 1 | ``- . - . - .`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 10 | Dash Dot | 2 | ``- . - . - .`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 11 | Dash Dot Dot | 1 | ``- . . - . .`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 12 | Dash Dot Dot | 2 | ``- . . - . .`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
// | 13 | SlantDash Dot | 2 | ``/ - . / - .`` |
|
|
|
|
// +-------+---------------+--------+-----------------+
|
|
|
|
//
|
|
|
|
// The following shows the borders in the order shown in the Excel dialog:
|
|
|
|
//
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | Index | Style | Index | Style |
|
|
|
|
// +=======+=================+=======+=================+
|
|
|
|
// | 0 | None | 12 | ``- . . - . .`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 7 | ``-----------`` | 13 | ``/ - . / - .`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 4 | ``. . . . . .`` | 10 | ``- . - . - .`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 11 | ``- . . - . .`` | 8 | ``- - - - - -`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 9 | ``- . - . - .`` | 2 | ``-----------`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 3 | ``- - - - - -`` | 5 | ``-----------`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 1 | ``-----------`` | 6 | ``===========`` |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
//
|
2017-03-19 17:14:40 +08:00
|
|
|
// The following shows the shading styles sorted by excelize index number:
|
|
|
|
//
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | Index | Style | Index | Style |
|
|
|
|
// +=======+=================+=======+=================+
|
|
|
|
// | 0 | Horizontal | 3 | Diagonal down |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 1 | Vertical | 4 | From corner |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 2 | Diagonal Up | 5 | From center |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
//
|
|
|
|
// The following shows the patterns styles sorted by excelize index number:
|
|
|
|
//
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | Index | Style | Index | Style |
|
|
|
|
// +=======+=================+=======+=================+
|
|
|
|
// | 0 | None | 10 | darkTrellis |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 1 | solid | 11 | lightHorizontal |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 2 | mediumGray | 12 | lightVertical |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 3 | darkGray | 13 | lightDown |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 4 | lightGray | 14 | lightUp |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 5 | darkHorizontal | 15 | lightGrid |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 6 | darkVertical | 16 | lightTrellis |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 7 | darkDown | 17 | gray125 |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 8 | darkUp | 18 | gray0625 |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
// | 9 | darkGrid | | |
|
|
|
|
// +-------+-----------------+-------+-----------------+
|
|
|
|
//
|
2017-03-26 15:27:04 +08:00
|
|
|
// The following the type of horizontal alignment in cells:
|
|
|
|
//
|
|
|
|
// +------------------+
|
|
|
|
// | Style |
|
|
|
|
// +==================+
|
|
|
|
// | left |
|
|
|
|
// +------------------+
|
|
|
|
// | center |
|
|
|
|
// +------------------+
|
|
|
|
// | right |
|
|
|
|
// +------------------+
|
|
|
|
// | fill |
|
|
|
|
// +------------------+
|
|
|
|
// | justify |
|
|
|
|
// +------------------+
|
|
|
|
// | centerContinuous |
|
|
|
|
// +------------------+
|
|
|
|
// | distributed |
|
|
|
|
// +------------------+
|
|
|
|
//
|
|
|
|
// The following the type of vertical alignment in cells:
|
|
|
|
//
|
|
|
|
// +------------------+
|
|
|
|
// | Style |
|
|
|
|
// +==================+
|
|
|
|
// | top |
|
|
|
|
// +------------------+
|
|
|
|
// | center |
|
|
|
|
// +------------------+
|
|
|
|
// | justify |
|
|
|
|
// +------------------+
|
|
|
|
// | distributed |
|
|
|
|
// +------------------+
|
|
|
|
//
|
2017-04-25 18:43:10 +08:00
|
|
|
// The following the type of font underline style:
|
|
|
|
//
|
|
|
|
// +------------------+
|
|
|
|
// | Style |
|
|
|
|
// +==================+
|
|
|
|
// | single |
|
|
|
|
// +------------------+
|
|
|
|
// | double |
|
|
|
|
// +------------------+
|
|
|
|
//
|
2017-04-07 17:32:14 +08:00
|
|
|
// Excel's built-in formats are shown in the following table:
|
|
|
|
//
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | Index | Format String |
|
|
|
|
// +=======+====================================================+
|
|
|
|
// | 0 | General |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 1 | 0 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 2 | 0.00 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 3 | #,##0 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 4 | #,##0.00 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 5 | ($#,##0_);($#,##0) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 6 | ($#,##0_);[Red]($#,##0) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 7 | ($#,##0.00_);($#,##0.00) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 8 | ($#,##0.00_);[Red]($#,##0.00) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 9 | 0% |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 10 | 0.00% |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 11 | 0.00E+00 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 12 | # ?/? |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 13 | # ??/?? |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 14 | m/d/yy |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 15 | d-mmm-yy |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 16 | d-mmm |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 17 | mmm-yy |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 18 | h:mm AM/PM |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 19 | h:mm:ss AM/PM |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 20 | h:mm |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 21 | h:mm:ss |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 22 | m/d/yy h:mm |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | ... | ... |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 37 | (#,##0_);(#,##0) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 38 | (#,##0_);[Red](#,##0) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 39 | (#,##0.00_);(#,##0.00) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 40 | (#,##0.00_);[Red](#,##0.00) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 41 | _(* #,##0_);_(* (#,##0);_(* "-"_);_(@_) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 42 | _($* #,##0_);_($* (#,##0);_($* "-"_);_(@_) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 43 | _(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 44 | _($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_) |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 45 | mm:ss |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 46 | [h]:mm:ss |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 47 | mm:ss.0 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 48 | ##0.0E+0 |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
// | 49 | @ |
|
|
|
|
// +-------+----------------------------------------------------+
|
|
|
|
//
|
2017-06-29 19:41:00 +08:00
|
|
|
func (f *File) NewStyle(style string) (int, error) {
|
|
|
|
var cellXfsID int
|
2017-06-26 18:44:19 +08:00
|
|
|
styleSheet := f.stylesReader()
|
2017-03-19 17:14:40 +08:00
|
|
|
formatCellStyle, err := parseFormatStyleSet(style)
|
2017-03-06 12:05:41 +08:00
|
|
|
if err != nil {
|
2017-06-29 19:41:00 +08:00
|
|
|
return cellXfsID, err
|
2017-03-06 12:05:41 +08:00
|
|
|
}
|
2017-06-26 18:44:19 +08:00
|
|
|
numFmtID := setNumFmt(styleSheet, formatCellStyle)
|
|
|
|
fontID := setFont(styleSheet, formatCellStyle)
|
|
|
|
borderID := setBorders(styleSheet, formatCellStyle)
|
|
|
|
fillID := setFills(styleSheet, formatCellStyle)
|
|
|
|
applyAlignment, alignment := setAlignment(styleSheet, formatCellStyle)
|
2017-06-29 19:41:00 +08:00
|
|
|
cellXfsID = setCellXfs(styleSheet, fontID, numFmtID, fillID, borderID, applyAlignment, alignment)
|
|
|
|
return cellXfsID, nil
|
2017-03-06 12:05:41 +08:00
|
|
|
}
|
|
|
|
|
2017-04-25 18:43:10 +08:00
|
|
|
// setFont provides function to add font style by given cell format settings.
|
|
|
|
func setFont(style *xlsxStyleSheet, formatCellStyle *formatCellStyle) int {
|
|
|
|
if formatCellStyle.Font == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
fontUnderlineType := map[string]string{"single": "single", "double": "double"}
|
|
|
|
if formatCellStyle.Font.Family == "" {
|
|
|
|
formatCellStyle.Font.Family = "Calibri"
|
|
|
|
}
|
|
|
|
if formatCellStyle.Font.Size < 1 {
|
|
|
|
formatCellStyle.Font.Size = 11
|
|
|
|
}
|
|
|
|
if formatCellStyle.Font.Color == "" {
|
|
|
|
formatCellStyle.Font.Color = "#000000"
|
|
|
|
}
|
|
|
|
f := font{
|
|
|
|
B: formatCellStyle.Font.Bold,
|
|
|
|
I: formatCellStyle.Font.Italic,
|
|
|
|
Sz: &attrValInt{Val: formatCellStyle.Font.Size},
|
|
|
|
Color: &xlsxColor{RGB: getPaletteColor(formatCellStyle.Font.Color)},
|
|
|
|
Name: &attrValString{Val: formatCellStyle.Font.Family},
|
|
|
|
Family: &attrValInt{Val: 2},
|
|
|
|
Scheme: &attrValString{Val: "minor"},
|
|
|
|
}
|
|
|
|
val, ok := fontUnderlineType[formatCellStyle.Font.Underline]
|
|
|
|
if ok {
|
|
|
|
f.U = &attrValString{Val: val}
|
|
|
|
}
|
|
|
|
font, _ := xml.Marshal(f)
|
|
|
|
style.Fonts.Count++
|
|
|
|
style.Fonts.Font = append(style.Fonts.Font, &xlsxFont{
|
|
|
|
Font: string(font[6 : len(font)-7]),
|
|
|
|
})
|
|
|
|
return style.Fonts.Count - 1
|
|
|
|
}
|
|
|
|
|
2017-04-07 17:32:14 +08:00
|
|
|
// setNumFmt provides function to check if number format code in the range of
|
|
|
|
// built-in values.
|
|
|
|
func setNumFmt(style *xlsxStyleSheet, formatCellStyle *formatCellStyle) int {
|
|
|
|
_, ok := builtInNumFmt[formatCellStyle.NumFmt]
|
|
|
|
if !ok {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return formatCellStyle.NumFmt
|
|
|
|
}
|
|
|
|
|
2017-03-19 17:14:40 +08:00
|
|
|
// setFills provides function to add fill elements in the styles.xml by given
|
|
|
|
// cell format settings.
|
|
|
|
func setFills(style *xlsxStyleSheet, formatCellStyle *formatCellStyle) int {
|
|
|
|
var patterns = []string{
|
|
|
|
"none",
|
|
|
|
"solid",
|
|
|
|
"mediumGray",
|
|
|
|
"darkGray",
|
|
|
|
"lightGray",
|
|
|
|
"darkHorizontal",
|
|
|
|
"darkVertical",
|
|
|
|
"darkDown",
|
|
|
|
"darkUp",
|
|
|
|
"darkGrid",
|
|
|
|
"darkTrellis",
|
|
|
|
"lightHorizontal",
|
|
|
|
"lightVertical",
|
|
|
|
"lightDown",
|
|
|
|
"lightUp",
|
|
|
|
"lightGrid",
|
|
|
|
"lightTrellis",
|
|
|
|
"gray125",
|
|
|
|
"gray0625",
|
|
|
|
}
|
|
|
|
|
|
|
|
var variants = []float64{
|
|
|
|
90,
|
|
|
|
0,
|
|
|
|
45,
|
|
|
|
135,
|
|
|
|
}
|
|
|
|
|
|
|
|
var fill xlsxFill
|
2017-03-26 15:27:04 +08:00
|
|
|
switch formatCellStyle.Fill.Type {
|
|
|
|
case "gradient":
|
|
|
|
if len(formatCellStyle.Fill.Color) != 2 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
var gradient xlsxGradientFill
|
|
|
|
switch formatCellStyle.Fill.Shading {
|
|
|
|
case 0, 1, 2, 3:
|
|
|
|
gradient.Degree = variants[formatCellStyle.Fill.Shading]
|
|
|
|
case 4:
|
|
|
|
gradient.Type = "path"
|
|
|
|
case 5:
|
|
|
|
gradient.Type = "path"
|
|
|
|
gradient.Bottom = 0.5
|
|
|
|
gradient.Left = 0.5
|
|
|
|
gradient.Right = 0.5
|
|
|
|
gradient.Top = 0.5
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
var stops []*xlsxGradientFillStop
|
|
|
|
for index, color := range formatCellStyle.Fill.Color {
|
|
|
|
var stop xlsxGradientFillStop
|
|
|
|
stop.Position = float64(index)
|
|
|
|
stop.Color.RGB = getPaletteColor(color)
|
|
|
|
stops = append(stops, &stop)
|
|
|
|
}
|
|
|
|
gradient.Stop = stops
|
|
|
|
fill.GradientFill = &gradient
|
|
|
|
case "pattern":
|
|
|
|
if formatCellStyle.Fill.Pattern > 18 || formatCellStyle.Fill.Pattern < 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if len(formatCellStyle.Fill.Color) < 1 {
|
|
|
|
break
|
2017-03-19 17:14:40 +08:00
|
|
|
}
|
2017-03-26 15:27:04 +08:00
|
|
|
var pattern xlsxPatternFill
|
|
|
|
pattern.PatternType = patterns[formatCellStyle.Fill.Pattern]
|
|
|
|
pattern.FgColor.RGB = getPaletteColor(formatCellStyle.Fill.Color[0])
|
|
|
|
fill.PatternFill = &pattern
|
2017-03-19 17:14:40 +08:00
|
|
|
}
|
|
|
|
style.Fills.Count++
|
|
|
|
style.Fills.Fill = append(style.Fills.Fill, &fill)
|
|
|
|
return style.Fills.Count - 1
|
|
|
|
}
|
|
|
|
|
2017-03-26 15:27:04 +08:00
|
|
|
// setAlignment provides function to formatting information pertaining to text
|
|
|
|
// alignment in cells. There are a variety of choices for how text is aligned
|
|
|
|
// both horizontally and vertically, as well as indentation settings, and so on.
|
|
|
|
func setAlignment(style *xlsxStyleSheet, formatCellStyle *formatCellStyle) (bool, *xlsxAlignment) {
|
|
|
|
if formatCellStyle.Alignment == nil {
|
|
|
|
return false, &xlsxAlignment{}
|
|
|
|
}
|
|
|
|
var alignment = xlsxAlignment{
|
|
|
|
Horizontal: formatCellStyle.Alignment.Horizontal,
|
|
|
|
Indent: formatCellStyle.Alignment.Indent,
|
|
|
|
JustifyLastLine: formatCellStyle.Alignment.JustifyLastLine,
|
|
|
|
ReadingOrder: formatCellStyle.Alignment.ReadingOrder,
|
|
|
|
RelativeIndent: formatCellStyle.Alignment.RelativeIndent,
|
|
|
|
ShrinkToFit: formatCellStyle.Alignment.ShrinkToFit,
|
|
|
|
TextRotation: formatCellStyle.Alignment.TextRotation,
|
|
|
|
Vertical: formatCellStyle.Alignment.Vertical,
|
|
|
|
WrapText: formatCellStyle.Alignment.WrapText,
|
|
|
|
}
|
|
|
|
return true, &alignment
|
|
|
|
}
|
|
|
|
|
2017-03-06 12:05:41 +08:00
|
|
|
// setBorders provides function to add border elements in the styles.xml by
|
|
|
|
// given borders format settings.
|
2017-03-19 17:14:40 +08:00
|
|
|
func setBorders(style *xlsxStyleSheet, formatCellStyle *formatCellStyle) int {
|
2017-03-06 12:05:41 +08:00
|
|
|
var styles = []string{
|
|
|
|
"none",
|
|
|
|
"thin",
|
|
|
|
"medium",
|
|
|
|
"dashed",
|
|
|
|
"dotted",
|
|
|
|
"thick",
|
|
|
|
"double",
|
|
|
|
"hair",
|
|
|
|
"mediumDashed",
|
|
|
|
"dashDot",
|
|
|
|
"mediumDashDot",
|
|
|
|
"dashDotDot",
|
|
|
|
"mediumDashDotDot",
|
|
|
|
"slantDashDot",
|
|
|
|
}
|
|
|
|
|
|
|
|
var border xlsxBorder
|
2017-03-19 17:14:40 +08:00
|
|
|
for _, v := range formatCellStyle.Border {
|
2017-03-06 12:05:41 +08:00
|
|
|
if v.Style > 13 || v.Style < 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var color xlsxColor
|
2017-03-19 17:14:40 +08:00
|
|
|
color.RGB = getPaletteColor(v.Color)
|
2017-03-06 12:05:41 +08:00
|
|
|
switch v.Type {
|
|
|
|
case "left":
|
|
|
|
border.Left.Style = styles[v.Style]
|
|
|
|
border.Left.Color = &color
|
|
|
|
case "right":
|
|
|
|
border.Right.Style = styles[v.Style]
|
|
|
|
border.Right.Color = &color
|
|
|
|
case "top":
|
|
|
|
border.Top.Style = styles[v.Style]
|
|
|
|
border.Top.Color = &color
|
|
|
|
case "bottom":
|
|
|
|
border.Bottom.Style = styles[v.Style]
|
|
|
|
border.Bottom.Color = &color
|
|
|
|
case "diagonalUp":
|
|
|
|
border.Diagonal.Style = styles[v.Style]
|
|
|
|
border.Diagonal.Color = &color
|
|
|
|
border.DiagonalUp = true
|
|
|
|
case "diagonalDown":
|
|
|
|
border.Diagonal.Style = styles[v.Style]
|
|
|
|
border.Diagonal.Color = &color
|
|
|
|
border.DiagonalDown = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
style.Borders.Count++
|
|
|
|
style.Borders.Border = append(style.Borders.Border, &border)
|
|
|
|
return style.Borders.Count - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// setCellXfs provides function to set describes all of the formatting for a
|
|
|
|
// cell.
|
2017-04-25 18:43:10 +08:00
|
|
|
func setCellXfs(style *xlsxStyleSheet, fontID, numFmtID, fillID, borderID int, applyAlignment bool, alignment *xlsxAlignment) int {
|
2017-03-06 12:05:41 +08:00
|
|
|
var xf xlsxXf
|
2017-04-25 18:43:10 +08:00
|
|
|
xf.FontID = fontID
|
|
|
|
if fontID != 0 {
|
|
|
|
xf.ApplyFont = true
|
|
|
|
}
|
2017-04-07 17:32:14 +08:00
|
|
|
xf.NumFmtID = numFmtID
|
|
|
|
if numFmtID != 0 {
|
|
|
|
xf.ApplyNumberFormat = true
|
|
|
|
}
|
2017-03-19 17:14:40 +08:00
|
|
|
xf.FillID = fillID
|
2017-03-06 12:05:41 +08:00
|
|
|
xf.BorderID = borderID
|
|
|
|
style.CellXfs.Count++
|
2017-03-26 15:27:04 +08:00
|
|
|
xf.Alignment = alignment
|
|
|
|
xf.ApplyAlignment = applyAlignment
|
2017-03-06 12:05:41 +08:00
|
|
|
style.CellXfs.Xf = append(style.CellXfs.Xf, xf)
|
|
|
|
return style.CellXfs.Count - 1
|
|
|
|
}
|
|
|
|
|
2017-06-29 19:41:00 +08:00
|
|
|
// SetCellStyle provides function to add style attribute for cells by given
|
|
|
|
// worksheet sheet index, coordinate area and style ID. Note that diagonalDown
|
|
|
|
// and diagonalUp type border should be use same color in the same coordinate
|
|
|
|
// area.
|
|
|
|
//
|
|
|
|
// For example create a borders of cell H9 on Sheet1:
|
|
|
|
//
|
|
|
|
// style, err := xlsx.NewStyle(`{"border":[{"type":"left","color":"0000FF","style":3},{"type":"top","color":"00FF00","style":4},{"type":"bottom","color":"FFFF00","style":5},{"type":"right","color":"FF0000","style":6},{"type":"diagonalDown","color":"A020F0","style":7},{"type":"diagonalUp","color":"A020F0","style":8}]}`)
|
|
|
|
// if err != nil {
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|
|
|
|
// xlsx.SetCellStyle("Sheet1", "H9", "H9", style)
|
|
|
|
//
|
|
|
|
// Set gradient fill with vertical variants shading styles for cell H9 on
|
|
|
|
// Sheet1:
|
|
|
|
//
|
|
|
|
// style, err := xlsx.NewStyle(`{"fill":{"type":"gradient","color":["#FFFFFF","#E0EBF5"],"shading":1}}`)
|
|
|
|
// if err != nil {
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|
|
|
|
// xlsx.SetCellStyle("Sheet1", "H9", "H9", style)
|
|
|
|
//
|
|
|
|
// Set solid style pattern fill for cell H9 on Sheet1:
|
|
|
|
//
|
|
|
|
// style, err := xlsx.NewStyle(`{"fill":{"type":"pattern","color":["#E0EBF5"],"pattern":1}}`)
|
|
|
|
// if err != nil {
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|
|
|
|
// xlsx.SetCellStyle("Sheet1", "H9", "H9", style)
|
|
|
|
//
|
|
|
|
// Set alignment style for cell H9 on Sheet1:
|
|
|
|
//
|
|
|
|
// style, err := xlsx.NewStyle(`{"alignment":{"horizontal":"center","ident":1,"justify_last_line":true,"reading_order":0,"relative_indent":1,"shrink_to_fit":true,"text_rotation":45,"vertical":"","wrap_text":true}}`)
|
|
|
|
// if err != nil {
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|
|
|
|
// xlsx.SetCellStyle("Sheet1", "H9", "H9", style)
|
|
|
|
//
|
|
|
|
// Dates and times in Excel are represented by real numbers, for example "Apr 7
|
|
|
|
// 2017 12:00 PM" is represented by the number 42920.5. Set date and time format
|
|
|
|
// for cell H9 on Sheet1:
|
|
|
|
//
|
|
|
|
// xlsx.SetCellValue("Sheet1", "H9", 42920.5)
|
|
|
|
// style, err := xlsx.NewStyle(`{"number_format": 22}`)
|
|
|
|
// if err != nil {
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|
|
|
|
// xlsx.SetCellStyle("Sheet1", "H9", "H9", style)
|
|
|
|
//
|
|
|
|
// Set font style for cell H9 on Sheet1:
|
|
|
|
//
|
|
|
|
// style, err := xlsx.NewStyle(`{"font":{"bold":true,"italic":true,"family":"Berlin Sans FB Demi","size":36,"color":"#777777"}}`)
|
|
|
|
// if err != nil {
|
|
|
|
// fmt.Println(err)
|
|
|
|
// }
|
|
|
|
// xlsx.SetCellStyle("Sheet1", "H9", "H9", style)
|
|
|
|
//
|
|
|
|
func (f *File) SetCellStyle(sheet, hcell, vcell string, styleID int) {
|
2017-03-06 12:05:41 +08:00
|
|
|
hcell = strings.ToUpper(hcell)
|
|
|
|
vcell = strings.ToUpper(vcell)
|
|
|
|
|
|
|
|
// Coordinate conversion, convert C1:B3 to 2,0,1,2.
|
|
|
|
hcol := string(strings.Map(letterOnlyMapF, hcell))
|
|
|
|
hrow, _ := strconv.Atoi(strings.Map(intOnlyMapF, hcell))
|
|
|
|
hyAxis := hrow - 1
|
2017-06-27 17:53:06 +08:00
|
|
|
hxAxis := TitleToNumber(hcol)
|
2017-03-06 12:05:41 +08:00
|
|
|
|
|
|
|
vcol := string(strings.Map(letterOnlyMapF, vcell))
|
|
|
|
vrow, _ := strconv.Atoi(strings.Map(intOnlyMapF, vcell))
|
|
|
|
vyAxis := vrow - 1
|
2017-06-27 17:53:06 +08:00
|
|
|
vxAxis := TitleToNumber(vcol)
|
2017-03-06 12:05:41 +08:00
|
|
|
|
|
|
|
if vxAxis < hxAxis {
|
|
|
|
hcell, vcell = vcell, hcell
|
|
|
|
vxAxis, hxAxis = hxAxis, vxAxis
|
|
|
|
}
|
|
|
|
|
|
|
|
if vyAxis < hyAxis {
|
|
|
|
hcell, vcell = vcell, hcell
|
|
|
|
vyAxis, hyAxis = hyAxis, vyAxis
|
|
|
|
}
|
|
|
|
|
|
|
|
// Correct the coordinate area, such correct C1:B3 to B1:C3.
|
2017-06-27 17:53:06 +08:00
|
|
|
hcell = ToAlphaString(hxAxis) + strconv.Itoa(hyAxis+1)
|
|
|
|
vcell = ToAlphaString(vxAxis) + strconv.Itoa(vyAxis+1)
|
2017-03-06 12:05:41 +08:00
|
|
|
|
2017-03-12 20:38:26 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2017-03-06 12:05:41 +08:00
|
|
|
|
2017-06-12 18:05:09 +08:00
|
|
|
completeRow(xlsx, vyAxis+1, vxAxis+1)
|
|
|
|
completeCol(xlsx, vyAxis+1, vxAxis+1)
|
2017-03-06 12:05:41 +08:00
|
|
|
|
|
|
|
for r, row := range xlsx.SheetData.Row {
|
|
|
|
for k, c := range row.C {
|
|
|
|
if checkCellInArea(c.R, hcell+":"+vcell) {
|
|
|
|
xlsx.SheetData.Row[r].C[k].S = styleID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-19 17:14:40 +08:00
|
|
|
|
|
|
|
// getPaletteColor provides function to convert the RBG color by given string.
|
|
|
|
func getPaletteColor(color string) string {
|
|
|
|
return "FF" + strings.Replace(strings.ToUpper(color), "#", "", -1)
|
|
|
|
}
|