Git Product home page Git Product logo

Comments (3)

minhhungit avatar minhhungit commented on June 9, 2024

hi @michalfita ,
ConsoleTableExt treat all values as string, so it does not discriminate "number" or "string"

but ConsoleTableExt also has a feature which give us define which columns we want to align using WithTextAlignment extension, for example:

.WithTextAlignment(new Dictionary<int, TextAligntment>{
    { 1, TextAligntment.Right },
    { 3, TextAligntment.Center}
})

In above example, 1 and 3 are column indexs

Same, you can align header with extension WithHeaderTextAlignment

.WithHeaderTextAlignment(new Dictionary<int, TextAligntment> {
   {1, TextAligntment.Center }
})

Check more in example project here https://github.com/minhhungit/ConsoleTableExt/tree/master/Src/ConsoleTableApp

from consoletableext.

michalfita avatar michalfita commented on June 9, 2024

I'm aware of this feature, however this require really going extra mile in comparison to ConsoleTables if you want to stick with simple From() call but want numbers right aligned. As you keep List<List<object>> some extra meta-magic would be possible figured if the original data were actually the number.

from consoletableext.

minhhungit avatar minhhungit commented on June 9, 2024

Support the feature is not too hard, but we will need to check every values in the table to verify if value is a "number" or not, this will cause a performance problem, it can be slower for large table. Anyway, I will consider to support it, I admit that defining text align by column index is quite bored

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.