From 14c6a198ce27b44fcce5447a2b757ce403ebb8fc Mon Sep 17 00:00:00 2001 From: xuri Date: Mon, 24 Oct 2022 00:02:22 +0800 Subject: Support get cell value which contains a date in the ISO 8601 format - Support set and get font color with indexed color - New export variable `IndexedColorMapping` - Fix getting incorrect page margin settings when the margin is 0 - Update unit tests and comments typo fixes - ref #65, new formula functions: AGGREGATE and SUBTOTAL --- cell.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cell.go') diff --git a/cell.go b/cell.go index 550ca38..3fcbb7b 100644 --- a/cell.go +++ b/cell.go @@ -826,6 +826,7 @@ func getCellRichText(si *xlsxSI) (runs []RichTextRun) { if v.RPr.Color.Theme != nil { font.ColorTheme = v.RPr.Color.Theme } + font.ColorIndexed = v.RPr.Color.Indexed font.ColorTint = v.RPr.Color.Tint } run.Font = &font -- cgit v1.2.1