UDTable column width

Is there a way to specify column width in New-UDTable (Dashboard 3.1.3). As you see in my screeshot below i have a table with some text and lots of numbers. They don’t need equal amount of table width :slight_smile:

1 Like

Nothing native to UDTable at the moment to configure this. We are doing a big refresh on the table component since there are soooo many feature requests for it. In 1.5 I’ll make sure you can specify something on New-UDTableColumn to configure the width.

1 Like

I’m not sure if this is what you’re after but if you use the UDStyle module you can apply some CSS to the table. What I’ve done with some of my tables is to set the width to fit the content of the column and then added a bit of padding to the right so they aren’t all bunched up together:

New-UDStyle -Style ’
table {
width:fit-content;
}
td {
padding-right:50px!important;
}’ -Content {
New-UDTable…
}

Hope this helps :slight_smile: