BetterConsoleTables
BetterConsoleTables copied to clipboard
Faster, colorable, more configurable, and more robust console colors & tables for C# console applications
I added nuget and try to use Column type Cant find ns Shame, i wanted to use this lib
This issue highlighted that this path may be awkward: #28 ```cs var table = new Table(TableConfig.Unicode()); table.From(statistics.ToArray()); // Enable inner formatting for all columns. foreach (var header in table.Headers) header.RowsFormat.InnerFormatting...
Does this library support formatting cells with multiple lines? I tried embedding System.Environment.NewLine but that corrupted the table format
I wonder if there's a way to print two tables side by side rather than one after the other. Maybe via some string manipulation? I would love to hear from...
I've already created a performance friendly text-wrapping method, but the current table generation logic doesn't enable cells to be dynamically sized vertically.
Right now if you try and bold or dim an RGB colored piece of text, nothing happens. This is because RGB already sets the intensity and the majority or terminals...
If a cell say, starts with a pre-formatted string and that cell has formatting. The cells formatting will be inserted before that custom formatting (At the beginning of the cells...
Hi @douglasg14b I found somethig weird in my testing I compare table printout to expected string in my integration test. When i run test from Visual Studio all is fine....
I'm not sure that this is similar for other types, but the example below gives an bugged output for the string case: ``` public Void Run() { Table table =...