xuri
5d8365ca17
Fix #529 , handle empty inline rich text
5 years ago
xuri
08d1a86c3a
Fix #523 , add stream writer for generate new worksheet with huge amounts of data
5 years ago
xuri
842b942c71
Compatible with up to 64 namespaces of Kingsoft WPS
5 years ago
xuri
402ad2f62b
Update XML namespace
5 years ago
xuri
8d6e431dcd
Resolve #521 , fix missing elements when parsing
5 years ago
xuri
7965e1231b
Resolve #146 , make the GetRow function read data as streaming. Ref: #382 , #515
5 years ago
马彦军
aa7eadbffe
fix go lock
5 years ago
xuri
c8c8397751
Fix #494 Merge pull request #514 from mlh758/fix-494-write-allocations
...
Reduce allocations when writing
5 years ago
Harris
bf9a835549
Reduce allocations when writing
...
Fix #494
If a row is full, don't bother allocating a new one, just return it.
Use the last populated row as a hint for the size of new rows.
Simplify checkSheet to remove row map
5 years ago
xuri
6abf8bf972
Resolve #501 , support set minor grid lines for the chart
5 years ago
xuri
5e418ebd66
Resolve #507 , add the new function `DeleteDefinedName`
5 years ago
xuri
87390cdd99
Resolve #511 , allow empty columns in the pivot table
5 years ago
Michael
9fe267ffcf
Pre-allocate some memory when reading files ( #510 )
5 years ago
xuri
e7581ebf3e
Fix corrupted Excel file issue #413
5 years ago
xuri
7716968abc
Fix #505 , support set line width of the line chart
5 years ago
ducquangkstn
866fda2300
fix #503 rows next issue
5 years ago
xuri
2e791fa433
Optimize code of Getting/Setting Page Margins
5 years ago
streboryaj
2d21b5b50f
Added accessors for Getting/Setting Page Margins ( #497 )
...
* Added accessors for Getting/Setting Page Margins
* Added test cases
5 years ago
xuri
af100372a0
Merge pull request #498 from heiy/master
...
solve ending space missing
5 years ago
heiy
810139f5fc
solve ending space missing
5 years ago
xuri
a00ba75f0f
Fix #493 Merge pull request #495 from jaby/493-ShowZeros
...
Add missing ShowZeros SheetViewOption implementation
5 years ago
jaby
babfeb6b57
Add missing ShowZeros SheetViewOption implementation
5 years ago
xuri
eb520ae277
Improve compatibility for charts
5 years ago
xuri
475fbf3856
Create SECURITY.md
5 years ago
xuri
a34d3b8c86
Compatibility improvement
5 years ago
xuri
75d66a03f3
Fix #482 , font strike style support
5 years ago
Christian Fiedler
3280e1b686
Allow access to more formula attributes in SetCellFormula ( #484 )
...
* 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.
5 years ago
xuri
3c636da460
Resolve #40 , init pivot table support
5 years ago
xuri
eef232f09e
Fix #483 , adjust the order of fields in the structure
5 years ago
xuri
8922f65978
Combine functions:
...
workBookRelsWriter, drawingRelsWriter into relsWriter;
drawingRelsReader, workbookRelsReader, workSheetRelsReader into relsReader;
addDrawingRelationships, addSheetRelationships into addRels
5 years ago
xuri
a3ee098ab6
Fix #466 , #480 Merge pull request #481 from bvwells/modules
...
Fix dependency on github.com/360EntSecGroup-Skylar/excelize v1
5 years ago
Ben Wells
3c327413d9
Fix dependency on github.com/360EntSecGroup-Skylar/excelize v1
5 years ago
xuri
acbabcf8fc
Add pivot table cache definition struct
5 years ago
xuri
b30c642e2b
Prepare pivot table support, add pivot table definition struct
5 years ago
xuri
0acb3ef968
Testing files updated
5 years ago
Vsevolod Balashov
1fc4bc52fb
Fix #386 regression test added ( #440 )
...
* #386 regression test added
* closes #386 string to bigint on GOARCH=386
5 years ago
xuri
333c5881c0
Merge pull request #479 from mtmcfarl/patch-1
...
Updating Readme
5 years ago
Matthew McFarling
875dd22bd0
Updating Readme
...
Removing the /v2 on the package url as it does not work with the ```go get``` command.
5 years ago
xuri
407fb55c20
Update the Godoc
5 years ago
xuri
da99334fca
Merge pull request #475 from mqy/master
...
add missing error check in SetSheetRow()
5 years ago
mqy
64809db2c9
add missing error check in SetSheetRow()
6 years ago
xuri
3092ce6e54
Merge pull request #473 from dolmen-go/cell-Sprint
...
SetCellValue: use fmt.Sprint(v) instead of fmt.Sprintf("%v", v)
6 years ago
Olivier Mengué
ac395a60ed
SetCellValue: use fmt.Sprint(v) instead of fmt.Sprintf("%v", v)
...
Because that does the same thing, but without having to parse a format
string.
Signed-off-by: Olivier Mengué <dolmen@cpan.org>
6 years ago
xuri
9c70d0ac86
Documentation updated, Go 1.10+ required
6 years ago
xuri
adc4aed472
Merge pull request #464 from mlh758/fix-462
...
Fixed #462 Handle multi row inline strings
6 years ago
xuri
23c8d1ec8a
Merge pull request #469 from zaddok/patch-1
...
Fix potential memory leak
6 years ago
Harris
acd76425c2
Handle multi row inline strings
...
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
6 years ago
xuri
e6b7ac9a03
Merge pull request #463 from mlh758/fix-457
...
Get sheet names based on index
6 years ago
zaddok
5107928892
Fix potential memory leak
...
Fix potential memory leak where zw is not Close() when an error occurs.
6 years ago
Harris
faaaa52cb8
Get sheet names based on index
...
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
6 years ago