Git Product home page Git Product logo

Comments (5)

minhhungit avatar minhhungit commented on May 31, 2024 1

Thank you @prodrammer for the coffee, I'm very appreciate
Yes, WithTitle at this time (ver 3.0) just work for "custom" formats, will support it in next release

from consoletableext.

minhhungit avatar minhhungit commented on May 31, 2024

@Hulkstance That is good idea, I will implement it in next version

from consoletableext.

minhhungit avatar minhhungit commented on May 31, 2024

version 3.0 is released, you can use char map to implement the example

var tableData = new List<List<object>>
{
    new List<object>{ "Sakura Yamamoto", "Support Engineer", "London", 46},
    new List<object>{ "Serge Baldwin", "Data Coordinator", "San Francisco", 28, "something else" },
    new List<object>{ "Shad Decker", "Regional Director", "Edinburgh"},
};

// Simple table
ConsoleTableBuilder
    .From(tableData)
    .ExportAndWriteLine();


// Advanced table 
ConsoleTableBuilder
    .From(tableData)
    .WithTitle("CONTACTS ")
    .WithColumn("Id", "First Name", "Sur Name")
    .WithCharMapDefinition(new Dictionary<CharMapPositions, char> {                   
        {CharMapPositions.BottomLeft, '=' },
        {CharMapPositions.BottomCenter, '=' },
        {CharMapPositions.BottomRight, '=' },
        {CharMapPositions.BorderX, '=' },
        {CharMapPositions.BorderY, '|' },
        {CharMapPositions.DividerY, '|' },
    })
    .WithHeaderCharMapDefinition(new Dictionary<HeaderCharMapPositions, char> {
        {HeaderCharMapPositions.TopLeft, '=' },
        {HeaderCharMapPositions.TopCenter, '=' },
        {HeaderCharMapPositions.TopRight, '=' },
        {HeaderCharMapPositions.BottomLeft, '|' },
        {HeaderCharMapPositions.BottomCenter, '-' },
        {HeaderCharMapPositions.BottomRight, '|' },
        {HeaderCharMapPositions.Divider, '|' },
        {HeaderCharMapPositions.BorderXTop, '=' },
        {HeaderCharMapPositions.BorderXBottom, '-' },
        {HeaderCharMapPositions.BorderY, '|' },
    })
    .ExportAndWriteLine();

image

from consoletableext.

prodrammer avatar prodrammer commented on May 31, 2024

If I don't have the charmaps, "WithTitle" doesn't work. Is this intentional? It's confusing to have "WithTitle" in the API.

BTW, just "bought you a coffee". Thanks!

from consoletableext.

minhhungit avatar minhhungit commented on May 31, 2024

@Hulkstance @prodrammer version 3.1.2 is released, right now old formats like markdown, alternative... can has title

image

from consoletableext.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.