diff options
author | xuri <xuri.me@gmail.com> | 2021-09-06 00:01:42 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-09-06 00:01:42 +0800 |
commit | 684603befa0fbde2ee8db704e37a544f9d92d99d (patch) | |
tree | 1b9318e7e008b78de5bb2b9342abd6290f67e408 /styles.go | |
parent | 32b23ef42d3ecb393e102c5f63ab5125db354435 (diff) |
This closes #993, closes #1014
- Fix formula percentages calculated incorrectly
- Make UpdateLinkedValue skip macro sheet
- Fix conditional format bottom N not working
Diffstat (limited to 'styles.go')
-rw-r--r-- | styles.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3011,6 +3011,7 @@ func drawCondFmtCellIs(p int, ct string, format *formatConditional) *xlsxCfRule func drawCondFmtTop10(p int, ct string, format *formatConditional) *xlsxCfRule { c := &xlsxCfRule{ Priority: p + 1, + Bottom: format.Type == "bottom", Type: validType[format.Type], Rank: 10, DxfID: &format.Format, |