• R/O
  • HTTP
  • SSH
  • HTTPS

excelize: List of commits

Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets


RSS
Rev. Time Author
cc1d3fe 2017-11-25 02:29:35 Rohan Allison

Add stacked bar chart

3d231cb 2017-11-21 12:08:28 xuri


Merge pull request #156 from dolmen-go/fix/SheetViewOptPtr-is-a-SheetViewOpt

SheetViewOptionPtr: document that it is a superset of SheetViewOption

130eb45 2017-11-21 12:07:00 xuri


Merge pull request #154 from dolmen-go/feature/SheetPr-options

Add {G,S}etSheetPrOptions() to allow to set FitToPage for printing

d2fb019 2017-11-18 03:43:32 Olivier Mengué

SheetViewOptionPtr: document that it is a superset of SheetViewOption

Document in type system (not just in text for humans) that
all SheetViewOptionPtr are also SheetViewOption (well, if not nil).
This improves documentation visible with godoc but this simple change
also allows more flexibility to manipulate SheetViewOption programatically
such as saving and restoring values:

var opt excelize.ShowFormulas
opt = new(excelize.ShowFormulas)
_ = xl.GetSheetViewOptions(sheet, -1, opt)
_ = xl.SetSheetViewOptions(sheet, -1, opt)

9546121 2017-11-18 02:45:20 Olivier Mengué

Add {G,S}etSheetPrOptions()

Add SetSheetPrOptions and GetSheetPrOptions to allow to set options on
<sheetPr> and <pageSetUpPr>.

The following options are implemented:
- CodeName (string)
- EnableFormatConditionsCalculation (bool)
- Published (bool)
- FitToPage (bool)
- AutoPageBreaks (bool)

90998bf 2017-11-17 10:33:50 xuri


Merge pull request #149 from dolmen-go/feature/SheetView-options

Add SetSheetViewOptions()

88e48e0 2017-11-16 20:00:36 Olivier Mengué

Add SetSheetViewOptions and GetSheetViewOptions (#145)

Two new methods:
- SetSheetViewOptions(sheetName string, viewIndex int, opts ...SheetViewOption) error
- GetSheetViewOptions(sheetName string, viewIndex int, opts ...SheetViewOptionPtr) error

The option values are given by the user through types that have privates methods
that implement the private SheetViewOption and SheetViewOptionPtr interfaces:
- DefaultGridColor(bool)
- RightToLeft(bool)
- ShowFormulas(bool)
- ShowGridLines(bool)
- ShowRowColHeaders(bool)

Examples:
err := xl.SetSheetViewOptions("Sheet1", -1, excelize.ShowGridLines(true))

var showGridLines excelize.ShowGridLines
err := xl.GetSheetViewOptions("Sheet1", -1, &showGridLines)

Fixes #145.

eb54510 2017-11-16 18:31:01 Ri Xu

Add missing XML attributes `customWorkbookViews` and `customWorkbookView` in the workbook, relate issue #152.

Signed-off-by: Ri Xu <xuri.me@gmail.com>

21214a5 2017-11-16 12:07:39 Jinzhu

Rename import path to github.com/360EntSecGroup-Skylar/excelize

96b3e1e 2017-11-16 11:24:45 Ri Xu

Bugfix: corrupted xlsx after write operation, relate issue #152.

Signed-off-by: Ri Xu <xuri.me@gmail.com>

a4ffb4f 2017-11-03 11:31:48 xuri


Merge pull request #141 from WingGao/wing

fix OpenReader no sheet error

f10ee92 2017-10-31 17:33:36 Ri Xu

- Bugfix: use sheet name in func `AddPicture`, relate issue #142;
- godoc updated

48b8bac 2017-10-27 23:05:00 Wing Gao

fix OpenReader no sheet error

ebafbdd 2017-10-20 15:40:57 Ri Xu

Bugfix: use sheet name in func `AddChat`, relate issue #138

Signed-off-by: Ri Xu <xuri.me@gmail.com>

8077732 2017-10-18 20:07:35 Ri Xu

Bugfix: read sheet name error, relate issue #137

Signed-off-by: Ri Xu <xuri.me@gmail.com>

b4ffa8c 2017-10-18 19:42:20 Ri Xu

- Add unsigned integer data type support, related issue #136;
- go test and godoc updated

Signed-off-by: Ri Xu <xuri.me@gmail.com>

9b5b74d 2017-10-16 11:42:43 Ri Xu

Performance optimization, use the array index instead of the value in range.

905be46 2017-09-30 18:07:59 Ri Xu

Improve code readability.

d4df70b 2017-09-27 11:14:58 Ri Xu

Merge pull request #126 from dvrkps/patch-1

travis: update go versions

87730aa 2017-09-26 19:47:18 Davor Kapsa

travis: update go versions

e820388 2017-09-19 12:59:33 Ri Xu

Handle coordinate parse exception, relate issue #122.

b7b937a 2017-09-13 23:17:40 Ri Xu

godoc updated.

f05f799 2017-09-13 23:00:33 Ri Xu

- API changed, use worksheet name instead of "sheet" + index, related issue #25, #43, #47, #51, #89, #101, #116 and #120.
- go test updated

3e7192b 2017-09-11 16:53:25 Ri Xu

Simple go test.

565b23e 2017-09-06 14:15:25 Ri Xu

go test added for pull request #114

cf1077d 2017-09-06 13:17:58 Ri Xu

Merge pull request #114 from lichaofei/master

change the TitleToNumber function

1f93fc7 2017-09-06 13:16:39 Ri Xu

Optimize code.

363604e 2017-09-05 20:10:23 lichaofei

Merge pull request #1 from lichaofei/test

Test

787495c 2017-09-05 19:26:47 lichaofei

Update lib.go

1169042 2017-09-05 19:06:38 lichaofei

Update lib.go

Show on old repository browser