@@ -101,6 +101,9 @@ func (s *Sheet) makeXLSXSheet(refTable *RefTable, styles *xlsxStyleSheet) *xlsxW
worksheet.Cols = xlsxCols{Col: []xlsxCol{}}
for _, col := range s.Cols {
+ if col.Width == 0 {
+ col.Width = ColWidth
+ }
worksheet.Cols.Col = append(worksheet.Cols.Col,
xlsxCol{Min: col.Min,
Max: col.Max,