summaryrefslogtreecommitdiff
path: root/xmlStyles.go
Commit message (Collapse)AuthorAge
* RichTextRun support set superscript and subscript by vertAlign attribute (#1252)jialei2022-06-13
| | | check vertical align enumeration, update set rich text docs and test
* Format code, update documentation and remove exported variable `XMLHeaderByte`xuri2022-03-24
|
* This closes #1148, resolve limitations when adding VBA project to the workbookxuri2022-02-17
| | | | | | | | Added two exported functions `SetWorkbookPrOptions` and `GetWorkbookPrOptions` to support setting and getting the code name property of the workbook Re-order fields of the workbook properties group to improve the compatibility Go Modules dependencies upgrade Put workbook related operating in new `workbook.go` source code Library introduction docs block updated
* This closes #1119, style parsing issue fixedxuri2022-01-15
|
* Typo fix, rename exported constants, dependencies modules and copyright updatexuri2022-01-09
| | | | Rename exported constants `NameSpaceDublinCoreMetadataIntiative` to `NameSpaceDublinCoreMetadataInitiative`
* Make the functions `SetSheetRow`, `New Style` and `SetCellStyle` concurrency ↵xuri2021-07-07
| | | | safety
* Fixe issue generated file corrupted caused by incorrect default XML ↵xuri2021-04-30
| | | | namespace attributes
* Go 1.15 and later required, #65 fn: IMABS, IMCOS, IMCOSH, IMCOT, IMCSC, ↵xuri2021-04-04
| | | | IMCSCH, IMEXP, IMLN and IMLOG10
* #65 fn: N, PERCENTILE.INC and Txuri2021-03-30
| | | | typo fixed
* This closes #809, and add new fn: HARMEANxuri2021-03-25
|
* value fields xlsxPatternFill.FgColor & xlsxPatternFill.BgColor cause … (#770)Eagle Xiang2021-01-28
| | | | | * value fields xlsxPatternFill.FgColor & xlsxPatternFill.BgColor cause ineffective omitempty tags * remove useless omitempty tag on xlsxPatternFill.FgColor and xlsxPatternFill.BgColor
* update docs and improve compatibilityxuri2020-07-11
|
* Update docs and typo fixedxuri2020-06-22
|
* - formula engine: reduce cyclomatic complexityxuri2020-05-10
| | | | - styles: allow empty and default cell formats, #628
* Resolve #628, omit number format emptyxuri2020-05-06
|
* Resolve #470, export Style structs to allow create the style for cells by ↵xuri2020-03-10
| | | | given JSON or structure
* Improve code coverage unit testsxuri2019-12-29
|
* Compatibility improvementxuri2019-09-24
|
* Fix #482, font strike style supportxuri2019-09-23
|
* Documentation updated, Go 1.10+ requiredxuri2019-08-11
|
* Fix #424, refactor merged cells adjusterxuri2019-06-12
|
* Fixed #418, #420, #421, init adjust calculation chain supportxuri2019-06-08
| | | | Update testing case
* Fix #411, change font size to float typexuri2019-06-07
|
* Resolve #404, get sheet map by target rels.xuri2019-05-17
|
* README updatedxuri2019-01-01
|
* Comments style changed.xuri2018-09-14
|
* Comments style changed.xuri2018-09-14
|
* Comments style changed.xuri2018-09-14
|
* Fix golint errors under confidence 0.1xuri2018-09-12
|
* - Add protection properties associated with the cell support, relate issue #191;Ri Xu2018-03-07
| | | | - godoc and go test has been updated
* - Init conditional format support, relate issue #75;Ri Xu2017-08-11
| | | | - go test and godoc updated
* Add missing element `xfId` of the styles to fix issue #93.Ri Xu2017-08-07
|
* - Support set custom number format, relate issue #86;Ri Xu2017-07-27
| | | | - go test and godoc updated
* - Fix missing element in worksheet, workbook and styles. Related issue #81;Ri Xu2017-07-15
| | | | - Format code and update readme
* - Display negative numbers by applying a red color supported;Ri Xu2017-07-15
| | | | - go test updated
* - Currency format supported, relate issue #80;Ri Xu2017-07-14
| | | | - go test and godoc updated
* Support set font style of shape text. Relate issue #38.Ri Xu2017-05-16
|
* Initialize comments support & go test updated.Ri Xu2017-05-13
|
* - Font bold, italic and underline style support. Relate issue #45;Ri Xu2017-04-25
| | | | | - Function `GetRows()` doc updated, relate issue #43; - go test and embed template updated
* - Set number format for a cell support;Ri Xu2017-04-07
| | | | - go test updated
* - Set text in cell align support, note that the parameters of the ↵Ri Xu2017-03-26
| | | | | | `SetCellStyle` function have changed; - go test updated
* - Set cell background color and style support;Ri Xu2017-03-19
| | | | | | - Rename function `SetBorder` to `SetCellStyle`; - Complete `xlsxColor` structure definition; - go test updated
* - Complete the element `sheetFormatPr` struct definition;Ri Xu2017-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 Xu2017-03-06
- Function parameter code is simplified; - Fix element `Tint` value parsing error in worksheet; - Update go test