diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-06-12 18:05:09 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-06-12 18:05:09 +0800 |
commit | efff54ccde5b7f0a62bccbeab557e23e5e89970b (patch) | |
tree | 4d75da3bb9c43da1186d076feaa725b0bd70ae38 /styles.go | |
parent | c89d84235238f1e2a37b03551ca6ef652c2f3769 (diff) |
- Fixed coordinate parse error in function `SetCellStyle()`, relate issue #60;
- Simplified code
Diffstat (limited to 'styles.go')
-rw-r--r-- | styles.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -776,8 +776,8 @@ func (f *File) setCellStyle(sheet, hcell, vcell string, styleID int) { xlsx := f.workSheetReader(sheet) - completeRow(xlsx, vxAxis+1, vyAxis+1) - completeCol(xlsx, vxAxis+1, vyAxis+1) + completeRow(xlsx, vyAxis+1, vxAxis+1) + completeCol(xlsx, vyAxis+1, vxAxis+1) for r, row := range xlsx.SheetData.Row { for k, c := range row.C { |