| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
- go test and godoc has been updated
|
|
|
|
|
|
|
| |
coordinate, relate issue #206;
- go test updated;
- Repository icon for SourceTree has been added
|
|
|
|
|
|
| |
fix issue #205;
- go test and godoc has been updated
|
|
|
|
|
|
| |
support, and set auto or fixed maximum, minimum of the axis, relate issue #202;
- go test and godoc has been updated
|
| |
|
| |
|
|
|
|
|
|
| |
of the same name, relate pull request #196;
- go test and godoc has been updated
|
|
|
|
|
|
|
| |
at once, relate issue #96 and #194;
- go test and godoc updated;
- Note that this function performance has not been tested
|
|
|
|
| |
- godoc and go test has been updated
|
| |
|
|
|
|
|
|
| |
and column series charts supported, relate issue #190;
- go test and godoc has been updated
|
|
|
|
| |
issue #188
|
| |
|
|
|
|
|
|
| |
relate issue #185;
- go test and document has been updated.
|
|
|
|
|
| |
- Fix ineffectual assignments in Go code;
- Godoc has been updated
|
|\
| |
| | |
Speedup `SetCellStyle()` more.
|
|/
|
|
|
|
|
|
|
| |
The recent improvement to SetCellStyle still loops
over all the rows before the area, moving the area checks
into the loop is more concise and faster.
Since the loop now covers the correct area by construction,
the inner loop check checkCellInArea is no longer needed.
|
|
|
|
| |
This reverts commit e4611e9e2518b6d48f1dd89879685f18749da759.
|
| |
|
|\
| |
| | |
xlsx.SetCellValue() now supports bool value
|
|/ |
|
|\
| |
| | |
make SetCellStyle quicker by skipping conversions in checkCellInArea,…
|
|/
|
|
|
|
| |
skipping area checks when we are sure the cell can't be before or past the current row/col
Signed-off-by: Matthieu Bresson
|
|
|
|
| |
- go test updated
|
| |
|
|
|
|
| |
- go test updated
|
| |
|
| |
|
| |
|
|
|
|
| |
- godoc updated
|
| |
|
|\
| |
| | |
Rename import path to github.com/360EntSecGroup-Skylar/excelize
|
| | |
|
| | |
|
| |
| |
| |
| | |
- godoc and go test updated
|
|\ \
| | |
| | | |
Add stacked bar chart
|
| | | |
|
|\ \ \
| | | |
| | | | |
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)
|
|\ \ \
| |/ /
|/| | |
Add {G,S}etSheetPrOptions() to allow to set FitToPage for printing
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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)
|
|\ \
| | |
| | | |
Add SetSheetViewOptions()
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| |/
|/|
| |
| |
| |
| | |
the workbook, relate issue #152.
Signed-off-by: Ri Xu <xuri.me@gmail.com>
|
|/
|
|
| |
Signed-off-by: Ri Xu <xuri.me@gmail.com>
|
|\
| |
| | |
fix OpenReader no sheet error
|
| | |
|
|/
|
|
| |
- godoc updated
|
|
|
|
| |
Signed-off-by: Ri Xu <xuri.me@gmail.com>
|