Replies: 11 comments
-
@kiran94 maybe in next version! I will implement more methods to help us format header, rows |
Beta Was this translation helpful? Give feedback.
-
@kiran94 var builder = ConsoleTableBuilder.From(GetSampleTableData());
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(builder.Export());
Console.ResetColor(); FYI, ExportAndWriteLine() is just a wrapper method which help us write less code public static void ExportAndWriteLine(this ConsoleTableBuilder builder)
{
Console.WriteLine(builder.Export());
} Hope this help |
Beta Was this translation helpful? Give feedback.
-
@minhhungit How is the formatting of header rows going? |
Beta Was this translation helpful? Give feedback.
-
@vanillajonathan please use Discussion for asking question |
Beta Was this translation helpful? Give feedback.
-
@minhhungit I meant formatting of header rows with colors, since this issue was about color support. So example if the data rows are with gray text then the text in the header rows could be in white text to stand out. |
Beta Was this translation helpful? Give feedback.
-
Ahh sorry, I did not notice it, at this time I have no idea how we should support color, will we color table border, cell content... ? Right now if you really want to color the table, you can use Anyway, I will reopen this issue. If you have idea, please let me know. |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
-
yeah It is possible for those functions |
Beta Was this translation helpful? Give feedback.
-
Humm, I checked it, unlucky table is built from StringBuilder ( |
Beta Was this translation helpful? Give feedback.
-
Right now I just can implement it like this (only support table title, other things like column name, border, cell content are more complex) Code is pushed to branch https://github.com/minhhungit/ConsoleTableExt/tree/Feature/Coloring |
Beta Was this translation helpful? Give feedback.
-
merged, now at version 3.1.2 we can use .WithTitle("HERE IS YOUR TITLE", ConsoleColor.Yellow, ConsoleColor.DarkGray) |
Beta Was this translation helpful? Give feedback.
-
Can we implement Colour Support in the tables?
Making use of something like:
Beta Was this translation helpful? Give feedback.
All reactions