diff options
author | xuri <xuri.me@gmail.com> | 2022-05-23 13:02:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 13:02:11 +0800 |
commit | afb2d27c90130878b82a70b44ccb4e30344cc09e (patch) | |
tree | bcab578db24cf82c974fe0d92ac82dfd37f37ffe /xmlDrawing.go | |
parent | 63adac25897f295ef4493e060d917650f03ebd3b (diff) |
This fix formula calculation accuracy issue and panic when set pane
- Fix `GROWTH` and `TREND` calculation accuracy issue
- Fix panic when add pane on empty sheet views worksheet
- New exported constants `MinFontSize`
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r-- | xmlDrawing.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go index db5d750..4808685 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -107,6 +107,7 @@ const ( MaxFieldLength = 255 MaxColumnWidth = 255 MaxRowHeight = 409 + MinFontSize = 1 TotalRows = 1048576 TotalColumns = 16384 TotalSheetHyperlinks = 65529 |