Table width on dashboard

Hi everyone,

Is there a way to set a table to expand to 100% width of the container card?

I have a table with long titles and they are wrapped making them difficult to read, but I have a large amount of unused space for the table to expand into. Is there a way to allow it to expand to the whole width.

Thanks,

Jamie

1 Like

Hi @jamiecarter7

This looks like a feature request. Pivot tables seem to have a fixed size with no possibility to enlarge and expand to fill the space in the Dashboard, so thanks for the suggestion.

It appears that you have a bunch of nice suggestions, would you like to use your account on Projects - Jira to create a feature request? (Or if you want I can create one on your behalf). After that, please post the link to the issue so other community members can watch/vote/comment!

As a workaround (but really a , I’d suggest adding a custom CSS styling:

div.dashboard-item-content table {
    display: table;
    width: 100%;
    height: 100%;
}

It should look for any table in the dashboard and force it to use the full space. See webapi_customization_css

Hope this helps! :slight_smile: