BetterConsoleTables icon indicating copy to clipboard operation
BetterConsoleTables copied to clipboard

Faster, colorable, more configurable, and more robust console colors & tables for C# console applications

Results 10 BetterConsoleTables issues
Sort by recently updated
recently updated
newest added

I added nuget and try to use Column type Cant find ns Shame, i wanted to use this lib

question

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...

enhancement

Does this library support formatting cells with multiple lines? I tried embedding System.Environment.NewLine but that corrupted the table format

enhancement

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...

enhancement
help wanted

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.

enhancement

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...

enhancement
v: 2

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...

bug
v: 2

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 =...

bug