summaryrefslogtreecommitdiff
path: root/excelize.go
Commit message (Collapse)AuthorAge
* Put path back into a fileJosh Fyne2017-02-16
|
* io.Reader not io.ReaderAtJosh Fyne2017-02-16
|
* Standardize input and outputJosh Fyne2017-02-16
|
* - 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
* Make functions: `SetCellValue`, `SetCellInt`, `SetCellHyperLink`, ↵Ri Xu2017-01-25
| | | | `SetCellFormula`, `GetCellValue` and `GetCellFormula` to support the merged cells.
* - 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 setter for default cell valueSharsie2017-01-11
| | | | | SetCellStr escapes the value in a cell so the excel sheet cannot use the value in formulas. SetCellDefault accepts a string value and sets it to a cell as a raw value without escaping it
* - Performance improvement, remove `replaceRelationshipsID` and ↵Ri Xu2016-12-31
| | | | | | `workBookCompatibility` functions; - New functions `GetActiveSheetIndex`, `GetSheetName` and `GetSheetMap` added.
* - Fix issue: sheet protection and conditional formatting proprietary missing ↵Ri Xu2016-12-26
| | | | | | after save; - Update workbook and sheet relationships and self-close tag replacement hack functions
* Change complete rows logic to fix call `SetCellValue`makes file corruption ↵Ri Xu2016-12-23
| | | | in some case.
* - 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
* Fix hyperlink missing after save issue and update completion row element ↵Ri Xu2016-12-20
| | | | logic to enhance compatibility.
* BugFix: `SetCellValue` function assertion logic will cause panic in some case.Ri Xu2016-11-24
|
* Update godoc of package.Ri Xu2016-10-19
|
* Use conjunction with strings.Map to split Axis and update godoc.Ri Xu2016-09-12
|
* New function SetCellValue added and update godoc example.Ri Xu2016-09-09
|
* Fix missing show grid lines property and godoc updated.Ri Xu2016-09-07
|
* Move execute checkRow logic when XLSX file open, speed up library write file.Ri Xu2016-09-07
|
* Open file error return added and UpdateLinkedValue function added to fix ↵Ri Xu2016-09-06
| | | | linked values within a spreadsheet are not updating.
* Fix issue #2 change project to object-oriented style and update readme file.Ri Xu2016-09-05
|
* Fix issue #4 use builtin `map` instead of home-built.Ri Xu2016-09-05
|
* xml marshal without indent and use buffer in string concatenation.Ri Xu2016-09-04
|
* Fix checkRow() out of rangeRi Xu2016-09-02
|
* Format code with golint rulesRi Xu2016-09-02
|
* - Get cell value supportRi Xu2016-08-30
| | | | | | - Optimisation code use fmt package - Update README - Remove useless function
* Init commit.Ri Xu2016-08-30