Giter VIP home page Giter VIP logo

Comments (1)

OvidijusParsiunas avatar OvidijusParsiunas commented on May 27, 2024

We primarily recommend developers to use the following approaches:

  • The tableStyle property can be set with width and maxWidth properties that use %/vh/vw metrics that will automatically react to the parent dimensions. Make sure to also check out the preserveNarrowColumns property that defines the rule for preserving columns which exceed the minimum markup width.
  • The cellStyle property can be set with fontSize that uses em/rem metrics which can help adjust the cell font size to the desired one.

A non reactive - but effective approach is to pre-compute the styling properties before passing them to the table, which enables the parent app to use any means of calculating the best values.

If you want to use media queries, they can be add to the component via the auxiliaryStyle property. (However, we do not recommend this approach as it may intervene with other styling properties and may result in undesirable styling) e.g:

auxiliaryStyle = `
  @media (max-width: 600px) {
    .cell {
      font-size: 10px;
      height: 38px;
    }
  }
`

If you have questions about reactive styling or suggestions for improvements, do not hesitate to add them in this thread or open up a new GitHub issue. Thanks!

from active-table.

Related Issues (11)

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.