summaryrefslogtreecommitdiff
path: root/styles.go
Commit message (Collapse)AuthorAge
* - Currency format supported, relate issue #80;Ri Xu2017-07-14
| | | | - go test and godoc updated
* - New function `NewStyle()` added and function `SetCellStyle()` has been ↵Ri Xu2017-06-29
| | | | | | exported, relate issue #72; - go test and go doc updated
* Function `GetCellValue()` performance improvement by avoid repeating ↵Ri Xu2017-06-29
| | | | deserialization, relate issue #70.
* - Make function `TitleToNumber()` exportable, note that function ↵Ri Xu2017-06-27
| | | | | | `ToAlphaString()` return value calculation changes, get more info from go doc. Relate issue #63; - Readme and go doc updated
* - Function `formattedValue()` performance improvement by avoid repeating ↵Ri Xu2017-06-26
| | | | | | deserialization, relate issue #64; - Make function `ToAlphaString()` exportable, relate issue #63
* - Fixed coordinate parse error in function `SetCellStyle()`, relate issue #60;Ri Xu2017-06-12
| | | | - Simplified code
* - Formatted cell data support, fix issue #48;Ri Xu2017-05-05
| | | | | - Function `SetCellValue()` support `time.Time` data type parameter, relate issue #49; - go doc and go test updated
* - Font bold, italic and underline style support. Relate issue #45;Ri Xu2017-04-25
| | | | | - Function `GetRows()` doc updated, relate issue #43; - go test and embed template updated
* - Set number format for a cell support;Ri Xu2017-04-07
| | | | - go test updated
* Godoc updated.Ri Xu2017-03-30
|
* - Set text in cell align support, note that the parameters of the ↵Ri Xu2017-03-26
| | | | | | `SetCellStyle` function have changed; - go test updated
* - Set cell background color and style support;Ri Xu2017-03-19
| | | | | | - Rename function `SetBorder` to `SetCellStyle`; - Complete `xlsxColor` structure definition; - go test updated
* Performance improvementRi Xu2017-03-12
|
* - Complete the element `sheetFormatPr` struct definition;Ri Xu2017-03-10
| | | | | | - Partial logic performance optimization, use pointer reference instead of a pass the variable value; - Add comments for content types struct definition; - Update go test `TestSetBorder` section
* - New feature: border setting support (Related issue #21);Ri Xu2017-03-06
- Function parameter code is simplified; - Fix element `Tint` value parsing error in worksheet; - Update go test