Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | New feature: sparkline supported | xuri | 2019-08-04 |
| | |||
* | Make fitToHeight tag omit empty | xuri | 2019-07-05 |
| | |||
* | - Supplemental worksheet struct fields and field order adjustment | xuri | 2019-06-05 |
| | | | | | - Testing case for set and get doc properties - Update charts struct XML tags | ||
* | Fix structs fields definition errors and keep double quotes in data ↵ | xuri | 2019-05-04 |
| | | | | validation formula | ||
* | The function SetPageLayout support set paper size | kkxkkxkkgh | 2019-01-13 |
| | |||
* | README updated | xuri | 2019-01-01 |
| | |||
* | Add support to flip outline summaries | Harris | 2018-12-13 |
| | | | | | | | | | This adds outlinePr support, with the summaryBelow attribute which defaults to true. Closes #304 Signed-off-by: Michael Harris | ||
* | resolve #273 new feature: protect sheet support | HcySunYang | 2018-11-02 |
| | | | new feature: protect sheet support, relate issue #273 | ||
* | Comments style changed. | xuri | 2018-09-14 |
| | |||
* | Comments style changed. | xuri | 2018-09-14 |
| | |||
* | Comments style changed. | xuri | 2018-09-14 |
| | |||
* | Fix golint errors under confidence 0.1 | xuri | 2018-09-12 |
| | |||
* | DataValidation struct changed | xuri | 2018-09-01 |
| | | | Change `allowBlank`, `ShowErrorMessage` and `ShowInputMessage` type as boolean, add new field `ShowDropDown`, change fields orders follow as ECMA-376-1:2016 18.3.1.32. | ||
* | add datavalidation test and fixed struct bug issue #240 | rentiansheng | 2018-09-01 |
| | |||
* | data validation funcation | rentiansheng | 2018-07-30 |
| | |||
* | Use min/mid/max value for 2 and 3 color scale conditional formatting | Alex Whitney | 2018-07-25 |
| | |||
* | - Support to read inlineStr type cell value, relate issue #208, PR #209; | Ri Xu | 2018-04-09 |
| | | | | - go test and godoc has been updated | ||
* | Add {G,S}etSheetPrOptions() | Olivier Mengué | 2017-11-17 |
| | | | | | | | | | | | | 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) | ||
* | Merge pull request #149 from dolmen-go/feature/SheetView-options | xuri | 2017-11-17 |
|\ | | | | | Add SetSheetViewOptions() | ||
| * | Add SetSheetViewOptions and GetSheetViewOptions (#145) | Olivier Mengué | 2017-11-16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||
* | | Bugfix: corrupted xlsx after write operation, relate issue #152. | Ri Xu | 2017-11-16 |
|/ | | | | Signed-off-by: Ri Xu <xuri.me@gmail.com> | ||
* | Update struct define to fix issue #112. | Ri Xu | 2017-09-05 |
| | |||
* | Document updated. | Ri Xu | 2017-08-11 |
| | |||
* | - Init conditional format support, relate issue #75; | Ri Xu | 2017-08-11 |
| | | | | - go test and godoc updated | ||
* | - Init create or remove panes support; | Ri Xu | 2017-07-30 |
| | | | | - go test updated | ||
* | - Fix missing element in worksheet, workbook and styles. Related issue #81; | Ri Xu | 2017-07-15 |
| | | | | - Format code and update readme | ||
* | - Unify the index row number index of functions `SetRowHeight()` and ↵ | Ri Xu | 2017-06-29 |
| | | | | | | | `GetRowHeight()` relate issue #68; - Unify the return value data type of functions `SetColWidth()` and `GetColWidth()`; - go test updated | ||
* | Init auto filter support, relate issue #59. | Ri Xu | 2017-06-08 |
| | |||
* | - Worksheet conditional formatting support added, relate issue #56; | Ri Xu | 2017-05-25 |
| | | | | - gofmted with -s | ||
* | Leading space(s) character in cell value detection added. Related issue #32. | Ri Xu | 2017-03-28 |
| | |||
* | - Complete the element `sheetFormatPr` struct definition; | Ri Xu | 2017-03-10 |
| | | | | | | - Partial logic performance optimization, use pointer reference instead of a pass the variable value; - Add comments for content types struct definition; - Update go test `TestSetBorder` section | ||
* | - New feature: border setting support (Related issue #21); | Ri Xu | 2017-03-06 |
| | | | | | | - Function parameter code is simplified; - Fix element `Tint` value parsing error in worksheet; - Update go test | ||
* | Fix data validation property is missing after saved. Related issue issue #28. | Ri Xu | 2017-03-03 |
| | |||
* | Format commants, break comments after 80 characters. | Ri Xu | 2017-01-18 |
| | |||
* | - New function `SetSheetName` and `SetColWidth` added, support rename sheet ↵ | Ri Xu | 2017-01-18 |
| | | | | | | | and set column width; - Add escape characters of sheet name; - Update go test and fix typo | ||
* | Fix issue struct field `paperHeight` has xml tag but is not exported. | Ri Xu | 2016-12-31 |
| | |||
* | - Performance improvement, remove `replaceRelationshipsID` and ↵ | Ri Xu | 2016-12-31 |
| | | | | | | `workBookCompatibility` functions; - New functions `GetActiveSheetIndex`, `GetSheetName` and `GetSheetMap` added. | ||
* | - Fix issue: sheet protection and conditional formatting proprietary missing ↵ | Ri Xu | 2016-12-26 |
| | | | | | | after save; - Update workbook and sheet relationships and self-close tag replacement hack functions | ||
* | - Fix issue: pivot cache and extending spreadsheetML missing; | Ri Xu | 2016-12-26 |
| | | | | - Compatibility improved: relationship namespace in `workbook.xml` has been changed (`xmlns:mc`, `xmlns:x15` and `mc:Ignorable` added) | ||
* | - Update maximum 31 characters allowed in sheet title; | Ri Xu | 2016-12-23 |
| | | | | | | | - Fix issue XML tag `headerFooter` and `sheetPr` element self-close errors cause file corruption; - Fix issue `Section` and `Pane` element order make file corruption in some case; - Change sheet `rId` calculation method in `/xl/workbook.xml`, fix makes file corruption in some case; - Compatibility improved: add `xlsxTabColor` struct and some XML element for worksheet | ||
* | - Fix issue comments missing after save; | Ri Xu | 2016-12-22 |
| | | | | | - Update import PKG syntax in struct; - Update test XLSX file (include table, charts, functions, comments and hyperlink on Sheet1) | ||
* | - Fix issue background image and table missing after save; | Ri Xu | 2016-12-20 |
| | | | | - Update test template for this fix | ||
* | Fix hyperlink missing after save issue and update completion row element ↵ | Ri Xu | 2016-12-20 |
| | | | | logic to enhance compatibility. | ||
* | Update godoc of package. | Ri Xu | 2016-10-19 |
| | |||
* | Fix zoom scale and page layout view setting of XLSX. | Ri Xu | 2016-09-22 |
| | |||
* | Add custom height and zero height attributes in sheetFormatPr element. | Ri Xu | 2016-09-19 |
| | |||
* | Fix missing show grid lines property and godoc updated. | Ri Xu | 2016-09-07 |
| | |||
* | Format code with golint rules | Ri Xu | 2016-09-02 |
| | |||
* | 1) Update readme file credits and go report badge added; 2) Remove use less ↵ | Ri Xu | 2016-08-31 |
| | | | | function; 3) Update test file. | ||
* | Init commit. | Ri Xu | 2016-08-30 |