summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Resolve #501, support set minor grid lines for the chartxuri2019-10-27
|
* Resolve #507, add the new function `DeleteDefinedName`xuri2019-10-26
|
* Resolve #511, allow empty columns in the pivot tablexuri2019-10-24
|
* Pre-allocate some memory when reading files (#510)Michael2019-10-24
|
* Fix corrupted Excel file issue #413xuri2019-10-23
|
* Fix #505, support set line width of the line chartxuri2019-10-21
|
* fix #503 rows next issueducquangkstn2019-10-18
|
* Optimize code of Getting/Setting Page Marginsxuri2019-10-17
|
* Added accessors for Getting/Setting Page Margins (#497)streboryaj2019-10-15
| | | | | | * Added accessors for Getting/Setting Page Margins * Added test cases
* Merge pull request #498 from heiy/masterxuri2019-10-10
|\ | | | | solve ending space missing
| * solve ending space missingheiy2019-10-10
|/
* Fix #493 Merge pull request #495 from jaby/493-ShowZerosxuri2019-09-30
|\ | | | | Add missing ShowZeros SheetViewOption implementation
| * Add missing ShowZeros SheetViewOption implementationjaby2019-09-30
|/
* Improve compatibility for chartsxuri2019-09-26
|
* Create SECURITY.mdxuri2019-09-25
|
* Compatibility improvementxuri2019-09-24
|
* Fix #482, font strike style supportxuri2019-09-23
|
* Allow access to more formula attributes in SetCellFormula (#484)Christian Fiedler2019-09-22
| | | | | | | | | | | | | | | | | | * Allow access to more formula attributes in SetCellFormula Make SetCellFormula variadic to not break API. The new arguments are option arguments in which the type of the formula and the ref attribute may be set. These need to be set for an array formula to work. * Add TestWriteArrayFormula to test optional parameters of SetCellFormula TestWriteArrayFormula writes a document to the test directory that contains array formulas that are used to calculate standard deviations. The file also contains values calculated by the Go testcase, so the results can be verified. It should be tested, if the array formula works (i.e. shows a number, not an error) and that the values calculated by the formula and those calculated by Go are the same.
* Resolve #40, init pivot table supportxuri2019-09-20
|
* Fix #483, adjust the order of fields in the structurexuri2019-09-18
|
* Combine functions:xuri2019-09-16
| | | | | | workBookRelsWriter, drawingRelsWriter into relsWriter; drawingRelsReader, workbookRelsReader, workSheetRelsReader into relsReader; addDrawingRelationships, addSheetRelationships into addRels
* Fix #466, #480 Merge pull request #481 from bvwells/modulesxuri2019-09-14
|\ | | | | Fix dependency on github.com/360EntSecGroup-Skylar/excelize v1
| * Fix dependency on github.com/360EntSecGroup-Skylar/excelize v1Ben Wells2019-09-13
|/
* Add pivot table cache definition structxuri2019-09-08
|
* Prepare pivot table support, add pivot table definition structxuri2019-09-06
|
* Testing files updatedxuri2019-09-02
|
* Fix #386 regression test added (#440)Vsevolod Balashov2019-09-01
| | | | | | * #386 regression test added * closes #386 string to bigint on GOARCH=386
* Merge pull request #479 from mtmcfarl/patch-1xuri2019-09-01
|\ | | | | Updating Readme
| * Updating ReadmeMatthew McFarling2019-08-28
|/ | | Removing the /v2 on the package url as it does not work with the ```go get``` command.
* Update the Godocxuri2019-08-21
|
* Merge pull request #475 from mqy/masterxuri2019-08-19
|\ | | | | add missing error check in SetSheetRow()
| * add missing error check in SetSheetRow()mqy2019-08-19
|/
* Merge pull request #473 from dolmen-go/cell-Sprintxuri2019-08-14
|\ | | | | SetCellValue: use fmt.Sprint(v) instead of fmt.Sprintf("%v", v)
| * SetCellValue: use fmt.Sprint(v) instead of fmt.Sprintf("%v", v)Olivier Mengué2019-08-13
|/ | | | | | | Because that does the same thing, but without having to parse a format string. Signed-off-by: Olivier Mengué <dolmen@cpan.org>
* Documentation updated, Go 1.10+ requiredxuri2019-08-11
|
* Merge pull request #464 from mlh758/fix-462xuri2019-08-11
|\ | | | | Fixed #462 Handle multi row inline strings
| * Handle multi row inline stringsHarris2019-08-09
| | | | | | | | | | | | | | | | | | The inline string struct is actually the same as the shared strings struct, reuse it. Note that Go version 1.10 is required. Fixes #462
* | Merge pull request #469 from zaddok/patch-1xuri2019-08-10
|\ \ | | | | | | Fix potential memory leak
| * | Fix potential memory leakzaddok2019-08-09
| | | | | | | | | Fix potential memory leak where zw is not Close() when an error occurs.
* | | Merge pull request #463 from mlh758/fix-457xuri2019-08-09
|\ \ \ | |/ / |/| | Get sheet names based on index
| * | Get sheet names based on indexHarris2019-08-08
| | | | | | | | | | | | | | | | | | | | | | | | SheetID only seems to indicate the file name for the sheet. Check the sheets list based on index instead. Reordering sheets in Excel changes the order they appear in that list. Fixes #457
* | | Merge pull request #461 from mlh758/fix-439xuri2019-08-08
|\ \ \ | |/ / |/| / | |/ Further improve read performance
| * Further improve read performanceHarris2019-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | Instead of re-encoding the full sheet to change the namespaces in the encoded bytes, read the sheet again and do the byte replacements there. In this case, file access ends up being more performant than marshaling the sheet back to XML. In the SharedStrings test, ensure the strings are actually read. Fix #439
* | Merge pull request #458 from zhaov/masterxuri2019-08-07
|\ \ | |/ |/| Update comments
| * Update commentszhaov2019-08-06
| |
* | Merge pull request #459 from WuXu1995/masterxuri2019-08-06
|\ \ | |/ |/| Bugfix #454
| * Bugfix #454WuXu19952019-08-06
|/
* Merge pull request #456 from mlh758/fix-439xuri2019-08-05
|\ | | | | Fix #439
| * Only parse xml once when readingHarris2019-08-05
|/ | | | | | | | | | We were parsing the whole sheet twice since the sheet reader already reads in all the rows. getTotalRowsCols function is unused after these changes so it has been deleted as well. Closes #439
* New feature: sparkline supportedxuri2019-08-04
|