PicoXLSX icon indicating copy to clipboard operation
PicoXLSX copied to clipboard

PicoXLSX is a small .NET / C# library to create XLSX files (Microsoft Excel 2007 or newer) in an easy and native way

Results 6 PicoXLSX issues
Sort by recently updated
recently updated
newest added

When generating files, RichTextString is not supported, similar to Excel's Cell.Characters

feature request

Is it possible to change tab color? I was looking for something like this worksheet.TabColor but didn't found.

feature request

I`d like to write cell notes in a spreadsheet. Is it supported? If not, could you point me to how to add this support? I could do a PR.

feature request

Hi, I'm missing some features. - Write RichText to cells - Add conditional formattings to cells - Some more overloads for convenience like to make the switch to library more...

enhancement
feature request

I've taken from example, code where its setting font like so: ``` cs Style s = new Style(); s.Append(Style.BasicStyles.Font("Arial Black", 11)); ``` And then call `.AddNextCell("text", s);` No matter what...