Andrey Bykiev
Andrey Bykiev
> [  ](https://github.com/frangoteam/FUXA/tree/inmation) Thank you, can you please describe what is done and what need to be done?
https://github.com/frangoteam/FUXA/tree/inmation
I've investigated the issues and standard palette size in excel 2007+ is indeed 64, but in earlier versions palette size is 56 https://github.com/ClosedXML/ClosedXML/wiki/Excel-Indexed-Colors NPOI supports excel 97-2003 format, @tonyqus, what...
I've researched the issue and I'm not 100% sure if it's a bug. When detecting the color it uses the standard palette of colors, that's why the color is different....
I've created a draft PR to run test on Ubuntu 22.04.2, I can't reproduce the issue with master branch, seems it was fixed in https://github.com/nissl-lab/npoi/pull/852 @tonyqus, you can close this...
Hi, you can try to disable smoothing with this code: ``` var plotArea = chart.GetCTChart().plotArea; foreach(var lineChart in plotArea.lineChart) { foreach(var serie in lineChart.ser) { var ctBool = new CT_Boolean();...
Nevermind, `ConnectionStringFile ` value should be specified with {0}, which will be replaced. I've researched the code and it uses `ASPNETCORE_ENVIRONMENT`/`DOTNET_ENVIRONMENT` variables in NetStandard and then searches for json file....
I believe it's not a bug, you can clone the existing style with `CloneStyleFrom` method and then change it.
Hi, you can use `AddCarriageReturn(`) method this way: ``` string text = "E\nF\nG\nH"; var lines = text.Split("\n"); run.SetText(lines[0]); for(int i = 1; i < lines.Length; i++) { run.AddCarriageReturn(); run.AppendText(lines[i]); }...
@Zt-freak, you can use this code for tables: ``` var table = doc.Tables.First(); var row = table.GetRow(0); var cell = row.GetCell(0); foreach (var p in cell.Paragraphs) { foreach (var r...