This issue highlighted that this path may be awkward: #28
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 = true;
Console.Write(table.ToString());
Perhaps the From() method could accept some parameters that apply to all columns?
This issue highlighted that this path may be awkward: #28
Perhaps the
From()
method could accept some parameters that apply to all columns?