summaryrefslogtreecommitdiff
path: root/excelize_test.go
Commit message (Collapse)AuthorAge
* Add currency format code and go test updated.Ri Xu2017-07-15
|
* - Display negative numbers by applying a red color supported;Ri Xu2017-07-15
| | | | - go test updated
* - Currency format supported, relate issue #80;Ri Xu2017-07-14
| | | | - go test and godoc updated
* Repo URI changed.Ri Xu2017-07-11
|
* - New function `NewStyle()` added and function `SetCellStyle()` has been ↵Ri Xu2017-06-29
| | | | | | exported, relate issue #72; - go test and go doc updated
* - Unify the index row number index of functions `SetRowHeight()` and ↵Ri Xu2017-06-29
| | | | | | | `GetRowHeight()` relate issue #68; - Unify the return value data type of functions `SetColWidth()` and `GetColWidth()`; - go test updated
* API changed, use `NewFile()` instead of `CreateFile()` and use `SaveAs()` ↵Ri Xu2017-06-28
| | | | instead of `WriteTo()`.
* - Support insert new lines into shape, relate issue #38, note that the ↵Ri Xu2017-06-19
| | | | | | format set parameter of function `AddShape()` changed; - go test and go doc updated
* - New functions `GetColVisible()` and `SetColVisible()` added, relate issue #61;Ri Xu2017-06-15
| | | | | - go test updated; - Fix typo
* - New functions: `GetSheetVisible()` and `GetRowVisible()` added, relate ↵Ri Xu2017-06-14
| | | | | | issue #61; - go test updated
* Init auto filter support, relate issue #59.Ri Xu2017-06-08
|
* Support set font style of shape text. Relate issue #38.Ri Xu2017-05-16
|
* - The max author and text in comment limit added;Ri Xu2017-05-13
| | | | - go doc and go test updated
* Initialize comments support & go test updated.Ri Xu2017-05-13
|
* - 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
* - Initialize shape support: new function `AddShape()` added. Relate issue #38;Ri Xu2017-04-30
| | | | | - Drawing `nvPicPr` element ID property calculation changed; - go test updated
* - Initialize table support;Ri Xu2017-04-28
| | | | - go test updated
* - New function `HideSheet()` and `UnhideSheet()` added;Ri Xu2017-04-26
| | | | - 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
* - Update doc of function `AddChart()`;Ri Xu2017-04-23
| | | | | - Readme updated; - go test update
* - Initialize char support, relate issue #31;Ri Xu2017-04-23
| | | | | | | | - Doc for function `GetRows()` updated, relate issue #43; - Fix doc typo in `xmlContentTypes.go`; - Default template updated; - Readme updated; - go test updated
* - Set number format for a cell support;Ri Xu2017-04-07
| | | | - go test updated
* - New function `CopySheet()` added, relate issue #33;Ri Xu2017-04-04
| | | | | - Typo fixed; - go test updated
* New function `GetSheetIndex()` added, relate issue #25;Ri Xu2017-04-01
| | | | | | Fix return index error in function `GetSheetMap()`; Fix return worksheet name error in function `GetSheetName()`; go test updated
* - Get an images in a cell supported, new function `GetPicture` added;Ri Xu2017-03-28
| | | | - go test updated
* Leading space(s) character in cell value detection added. Related issue #32.Ri Xu2017-03-28
|
* - Set text in cell align support, note that the parameters of the ↵Ri Xu2017-03-26
| | | | | | `SetCellStyle` function have changed; - go test updated
* - Delete sheet from workbook support, related issue #30;Ri Xu2017-03-22
| | | | - 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
* - 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
* Change function `AddPicture()` parameters to add add printing settings ↵Ri Xu2017-02-28
| | | | support. Related issue #27.
* - Improved performance when reading large files, call Token to read tokens ↵Ri Xu2017-02-12
| | | | | | | one by one instead Unmarshal. Related issue #20 ; - Fix go test typo; - Update README
* Add SetRowHeight functionNikolas Silva2017-02-02
|
* Make functions: `SetCellValue`, `SetCellInt`, `SetCellHyperLink`, ↵Ri Xu2017-01-25
| | | | `SetCellFormula`, `GetCellValue` and `GetCellFormula` to support the merged cells.
* Support create merge cell.Ri Xu2017-01-25
|
* Support set work sheet background image.Ri Xu2017-01-24
|
* Support add picture with offset and scaling.Ri Xu2017-01-22
|
* - Add hyperlink and set formula support for cell support;Ri Xu2017-01-19
| | | | | - Character limits for cells added; - Update go test and fix typo
* Format commants, break comments after 80 characters.Ri Xu2017-01-18
|
* - New function `SetSheetName` and `SetColWidth` added, support rename sheet ↵Ri Xu2017-01-18
| | | | | | | and set column width; - Add escape characters of sheet name; - Update go test and fix typo
* - New function `AddPicture()` added, support to add picture into excel cell;Ri Xu2017-01-17
| | | | | - go test updated; - fix typo and `gofmt -s` formatted
* Add tests for the default cell valueSharsie2017-01-11
|
* - Performance improvement, remove `replaceRelationshipsID` and ↵Ri Xu2016-12-31
| | | | | | `workBookCompatibility` functions; - New functions `GetActiveSheetIndex`, `GetSheetName` and `GetSheetMap` added.
* - New function `GetCellFormula` added;Ri Xu2016-12-24
| | | | | - Fix `GetCellValue` causes panic in some particular situation issues; - Go test updated
* - Update maximum 31 characters allowed in sheet title;Ri Xu2016-12-23
| | | | | | | - Fix issue XML tag `headerFooter` and `sheetPr` element self-close errors cause file corruption; - Fix issue `Section` and `Pane` element order make file corruption in some case; - Change sheet `rId` calculation method in `/xl/workbook.xml`, fix makes file corruption in some case; - Compatibility improved: add `xlsxTabColor` struct and some XML element for worksheet
* BugFix: `SetCellValue` function assertion logic will cause panic in some case.Ri Xu2016-11-24
|
* Remove useless `.xlsx` tested files and go test updated.Ri Xu2016-11-02
|
* Update go test.Ri Xu2016-10-23
|
* Update go test case and update readme.Ri Xu2016-10-23
|