| Commit message (Collapse) | Author | Age |
| |
|
| |
|
|
|
|
| |
Update testing case
|
| |
|
|
|
|
|
| |
- Testing case for set and get doc properties
- Update charts struct XML tags
|
| |
|
| |
|
|\
| |
| | |
Add the ability to change the default font
|
|/
|
|
| |
Closes #390
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
validation formula
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
typo fixed
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Rewrite prepareSheetXML to scale linearly
We don't need to backfill columns into every row for most purposes
Provided makeContiguousColumns for setting styles where we do
need it for a specific region.
Added a benchmark to monitor progress. For 50,000 rows this went
from about 11 seconds to 1 second. The improvements are more
dramatic as the row/column count increases.
* Assigning that row value was redundant
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
add error return value
exported functions:
GetMergeCells
ProtectSheet
UnprotectSheet
UpdateLinkedValue
GetMergeCells
SetSheetVisible
inner functions:
workSheetReader
copySheet
|
| |
|
|\
| |
| | |
Fix two bugs related to Formula
|
| |
| |
| |
| | |
Fix file corruption issue when deleting a sheet containing a formula.
|
|\ \
| |/
|/| |
fix calc object position for addPicture
|
| | |
|
| |
| |
| |
| | |
The target cell for calclator the height was shifted by 1.
|
| |
| |
| |
| | |
The target cell for calclator the width was shifted by 1.
|
|/ |
|
|\
| |
| | |
Do not save duplicate images
|
|/
|
|
|
|
|
| |
Adding the same image should create a drawing referencing the
already stored copy of the image.
Closes #359
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Exported functions:
SetCellStyle
InsertCol
RemoveCol
RemoveRow
InsertRow
DuplicateRow
DuplicateRowTo
SetRowHeight
GetRowHeight
GetCellValue
GetCellFormula
GetCellHyperLink
SetCellHyperLink
SetCellInt
SetCellBool
SetCellFloat
SetCellStr
SetCellDefault
GetCellStyle
SetCellValue
MergeCell
SetSheetRow
SetRowVisible
GetRowVisible
SetRowOutlineLevel
GetRowOutlineLevel
GetRows
Columns
SearchSheet
AddTable
GetPicture
AutoFilter
GetColVisible
SetColVisible
GetColOutlineLevel
SetColOutlineLevel
SetColWidth
GetColWidth
inner functions:
adjustHelper
adjustMergeCells
adjustAutoFilter
prepareCell
setDefaultTimeStyle
timeToExcelTime
addDrawingChart
addDrawingVML
addDrawingPicture
getTotalRowsCols
checkRow
addDrawingShape
addTable
|
|
|
|
|
|
|
|
| |
* Add benchmark for adding images to sheet
This should help track performance regressions in future changes.
* Only transform sheet name if necessary
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
This allows the user to set a floating point value into a
cell with a specific number of places after the decimal.
Closes #357
|
|
|
|
| |
typo fixed and go test updated
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
|
|\
| |
| | |
update go test and function docs
|
|/ |
|
|
|
|
|
|
| |
* update README and functions docs
* update README and functions docs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Implement consistent row addressing by Excel row number starting with 1
1. Added second versions for all row manipulation methods with zero-based row addressing.
2. Fixed methods documentation to explicitly describe which row addressing used in method.
3. Added WARNING to README.md.
4. Cosmetic change: All row test moved to file `rows_test.go`.
* TravisCI: go1.12 added to tests matrix
* BACKWARD INCOMPARTIBLE: Use only Excel numbering logic from 1 row
* README updated
|
| |
|
| |
|