Dashboards & Visualizations

Change the font size of Single value panel title tag in Simple XML

karthi25
Path Finder

I am having four single value panel in a same row on the XML dashboard.I have used the below code to reduce the font size

#id .single-value .single-result {
      font-size: 25px !important;
  }

Its reduces the font size of the result as expected.
Now I want to reduce only the title font size some more.Can anyone please suggest me to do it.

Tags (1)
0 Karma
1 Solution

niketn
Legend

@karthi25, you can add the following CSS

      #id .dashboard-element-title{
        font-size: 90% !important;
      }

Following is run anywhere dashboard to test the changes:

<dashboard>
  <label>Change Single Value Title Size</label>
  <row>
    <panel>
      <html>
        <style>
          #id .dashboard-element-title{
            font-size: 90% !important;
          }
          #id .single-value .single-result {
            font-size: 25px !important;
          }
        </style>
      </html>
      <single id="id">
        <title>Single Value Title</title>
        <search>
          <query>| makeresults
| eval data = 1023
| table data</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="refresh.display">progressbar</option>
        <option name="showTrendIndicator">0</option>
      </single>
    </panel>
  </row>
</dashboard>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

@karthi25, you can add the following CSS

      #id .dashboard-element-title{
        font-size: 90% !important;
      }

Following is run anywhere dashboard to test the changes:

<dashboard>
  <label>Change Single Value Title Size</label>
  <row>
    <panel>
      <html>
        <style>
          #id .dashboard-element-title{
            font-size: 90% !important;
          }
          #id .single-value .single-result {
            font-size: 25px !important;
          }
        </style>
      </html>
      <single id="id">
        <title>Single Value Title</title>
        <search>
          <query>| makeresults
| eval data = 1023
| table data</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="refresh.display">progressbar</option>
        <option name="showTrendIndicator">0</option>
      </single>
    </panel>
  </row>
</dashboard>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...