I just got started with ClosedXML. When I create a new workbook with the code below, it automatically applies "Blue, Table Style Light 9" to each worksheet. I don't want any style on the worksheets. How do I specify no style?
XLWorkbook wb = new XLWorkbook();
wb.Worksheets.Add(dt, "sheet1");
I'm just basically filling the sheet with a SQL datatable.