Dashboards & Visualizations

How do you adjust simple xml table column width in Splunk 6.x?

anwarmian
Communicator

I am trying to find out how to adjust the widths of columns in a table in Simple XML. I've explored some .css and .js options but could not find a satisfactory answer. Could someone shed some light on it. Thanks

sdhawanx
Path Finder

 you can use something like this if you want to make changes to a particular column

#tableWithDrilldown td:nth-child(16) {
          color: #1717E6 !important;
          font-weight: bold !important;
          text-decoration: underline !important;
          text-decoration-color: blue !important;
          }

 

0 Karma

fdi01
Motivator

in you table put id as

<table id="size_cell">
.......
.....
</table >

in you .css file add

#size_cell  td.size {
 size: 25px;
background-color: #ffc57a !important;
font-weight: bold;
}

you can change the size with size: size_valeur pixel as you want.
or you use the width and height attributes by specifying the values of your choice in your .css file

anwarmian
Communicator

Good answer fdi01. I've tried this but other css files (i,e.bootstrap.min.css, etc) are taking precedence over my custom css file event if I use "!important; ." I believe using % is good for column width. I was actually interested in setting column width on a particular column (i.e. 4th column) in a table. Thank you for your answer.

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...