We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I am trying to fix the width of Col2 column, as shown in table, but it always takes same width for all columns.
How to provide width style to column?
The text was updated successfully, but these errors were encountered:
Hi @priyaraskar
I'll look into adding a way to specify a size for columns (either inches or percent).
Sorry, something went wrong.
If you generating the table from an HTML table using addSlidesForTable() then you can utilize a data tag to specify a minimum width.
addSlidesForTable()
Example:
<table> <thead> <th data-pptx-min-width="0.75">Emp ID</th> <th>First Name</th> <th>Last Name</th> </thead> <tbody> [...] </tbody> </table>
Added min-width attribute for Issue #42
21b4db3
Update:
gitbrent
No branches or pull requests
I am trying to fix the width of Col2 column, as shown in table,
but it always takes same width for all columns.
How to provide width style to column?
The text was updated successfully, but these errors were encountered: