Hi @STCK If you're using Classic XML dashboards then check out https://community.splunk.com/t5/Splunk-Search/Column-width/m-p/309645/highlight/true#M92893 There is a 'Table With Custom Column Width' dashboard example in the Splunkbase Dashboard Examples app https://splunkbase.splunk.com/app/1603 If you are using Dashboard Studio then you can use 'columnFormat' a bit like this: {
"type": "splunk.table",
"options": {
"columnFormat": {
"host": {
"width": 120,
"textOverflow": "anywhere",
},
"count": {
"width": 300
}
}
},
"dataSources": {
"primary": "ds_1FL3tRPy"
},
"context": {},
"containerOptions": {},
"showProgressBar": true,
"showLastUpdated": false
} 🌟 Did this answer help you? If so, please consider: Adding karma to show it was useful Marking it as the solution if it resolved your issue Commenting if you need any clarification Your feedback encourages the volunteers in this community to continue contributing
... View more