Merge pull request #155 from dolmen-go/deepcopy-with-reflect
xuri
2018-06-17 21:38:14 +0800
4a1b406456CopySheet() using reflect instead of encoding/gob
Olivier Mengué
2017-11-17 12:56:58 +0100
2132de1a08Extract WriteTo method (see io.WriterTo) to expose bytes written
Olivier Mengué
2018-06-14 17:00:00 +0200
ccdefb3b16Documentation: * Add information about return value of NewSheet() * Minor documentation language fixes Samples: * Added sample go file for dumping a XLSX file to the console
Sebastian Willing
2018-06-11 17:25:28 +0200
- Add error return value for functions: `AddChart()`, `AddComment()`, `AddPicture()`, `AddShape()`, `AddTable()` and `SetConditionalFormat()` - go test has been updated
xuri
2018-05-27 11:25:55 +0800
- Performance optimization 20% faster, 14% memory savings on set cell values; - Using the canonical syntax in issue template and contributing guide; - go test has been updated
xuri
2018-05-15 21:00:56 +0800
- Bugfix: set font family not works, relate issue #222; - Remove useless function `replaceWorkSheetsRelationshipsNameSpace()`; - Make test cases use strict error checking
xuri
2018-05-08 10:36:13 +0800
e70618d084Added functions to set and get outline level for columns and rows.
Ilya Kuznetsov
2018-05-07 21:32:20 +0300
- Fix `checkCellInArea()` index out of range when merged cell ref is single coordinate, relate issue #206; - go test updated; - Repository icon for SourceTree has been added
Ri Xu
2018-04-08 10:31:11 +0800
- Make row index consistent in function `SetRowHeight` and `GetRowHeight`, fix issue #205; - go test and godoc has been updated
Ri Xu
2018-04-02 10:59:15 +0800
- Add categories or values on reverse order (orientation of the chart) support, and set auto or fixed maximum, minimum of the axis, relate issue #202; - go test and godoc has been updated
Ri Xu
2018-03-29 20:17:07 +0800
- Update the function `NewSheet()` to handle when already exists a worksheet of the same name, relate pull request #196; - go test and godoc has been updated
Ri Xu
2018-03-16 20:54:07 +0800
- New function `SetSheetRow()` has been added for support write whole line at once, relate issue #96 and #194; - go test and godoc updated; - Note that this function performance has not been tested
Ri Xu
2018-03-12 20:14:39 +0800
- Update the function `AddChart()`: clustered, stacked and 100% stacked bar and column series charts supported, relate issue #190; - go test and godoc has been updated
Ri Xu
2018-03-05 21:23:52 +0800
- Add a hyperlink to an image support for the function `AddPicture()`, relate issue #185; - go test and document has been updated.
Ri Xu
2018-02-03 15:02:37 +0800
Merge pull request #180 from mbresson/optimize-SetCellStyle
xuri
2018-01-19 20:58:26 +0800
317ef65381make SetCellStyle quicker by skipping conversions in checkCellInArea, and skipping area checks when we are sure the cell can't be before or past the current row/col Signed-off-by: Matthieu Bresson
mbresson
2018-01-19 17:32:54 +0800
- API changed, use worksheet name instead of "sheet" + index, related issue #25, #43, #47, #51, #89, #101, #116 and #120. - go test updated
Ri Xu
2017-09-13 22:00:33 +0800