Michael Stum

Results 9 issues of Michael Stum

Hi, I've setup a watcher like this: ``` func setupConfigWatcher() { configWatcher, err := fsnotify.NewWatcher() if err != nil { log.Fatal("Setup Config Watcher:",err) } done := make(chan bool) go func()...

`Deserialize` is still left to be done, but Immutable Collections can now be serialized with either `Serialize` or `SerializeDynamic`, and deserialized with `DeserializeDynamic`.

There is an attribute that allows to have Excel automatically size columns.

3.1

If charts can be done without OLE, these might be useful, especially for the common ones (Bar, Line, Pie).

3.1

Merges can be done to the right and down. Problem: CellCollection needs to know when I'm trying to edit a cell that's part of a merge and either modify the...

3.1

When i want to do ``` sheet.Cells["B2"].Bold = true; ``` this throws a NullReferenceException because the B2 Cell isn't created yet. CellCollection should implicitly create an empty cell. Two problems:...

3.1

```cs var ws = new Worksheet("Testing"); ws.Cells[0,0] = "Foo"; ws.Cells[1,1] = null; var wb = new Workbook(); wb.Add(ws); wb.Save(@"test.xlsx"); ``` NullReferenceException: ``` at Simplexcel.XlsxInternal.XlsxWriter.XlsxWriterInternal.HandleLargeNumbers(Worksheet sheet) at Simplexcel.XlsxInternal.XlsxWriter.XlsxWriterInternal.Save(Workbook workbook, Stream outputStream,...

I'm using less.js version 3.8.1 in the Browser for local development (less.min.js from /dist from the 3.8.1 Release Source Zip), and in Internet Explorer 11 it throws a TypeError because...

bug
low priority

Hey Folks! I've decided to archive this repository because I won't have time to really look after it anymore. I started Simplexcel back in 2013 because I needed to reliably...