Hi,
Is it possible to hide sort indicators in the headers of a table in Dashboard studio?
Thank you
Hi @wp-uk-36,
This solution also disables pagination, but you can pre-sort your data source search, set the visualization count option to the desired number of rows, and then set the visualization paginateDataSourceKey option to an empty string:
{
...,
"visualizations": {
"viz_xxx": {
"dataSources": {
"primary": "ds_xxx"
},
"options": {
"count": 100,
"paginateDataSourceKey": ""
},
"type": "splunk.table"
}
},
...
}The sort indicators are still visible, but clicking a header cell will have no effect.
That won't work, I need sort indicators gone visually. They take up space on screen so when a large number of columns is displayed some columns end up being squashed. If sort indicators were absent those wouldn't be squashed.
Thank you for taking the time to reply though, I appreciate it.