Hi Sowmya,
There are many ways for you to tackle this problem, of which the easiest would probably be to use a table to display your data instead of a layout grid. In the table, you can set a pixel width of the colums. Set the width you desire per column and you're done!
Many other solutions include CSS and SASS for styling ("width" properties and such), this blogpost is a good starting point: https://www.mendix.com/blog/app-styling-basics-where-to-start-with-look-and-feel/
Good luck!
For anyone else who winds up here, the real answer is you click on the row of the layout grid and select “no” for spacing between columns.
(it’s likely this wasn’t possible when the question was initially asked, but this still floats to the top of my search results on google so thought I’d share)
Hi,
Try making the whole table smaller by setting the following style.
max-width: 400px;
This will make the whole table smaller, then you can scale the columns like 2:2:4:4
-Andrej