Dashboards & Visualizations

Font size for single value visualization

HeinzWaescher
Motivator

Hi,

I've added several single value visualizations to a dashboard. Is it possible to adjust the font size for each panel in the xml view?

BR
Heinz

0 Karma

somesoni2
Revered Legend

Try this

<form>
  <label>Big Single Value</label>
  <description/>
  <fieldset submitButton="false">   
    <html>
      <style type="text/css">
        .single-value .single-result {
    font-size: 120px;
}
      </style>
    </html>
  </fieldset>
  <row>
    <panel>
      <single>
        <searchString>index=_internal | stats count</searchString>
        <earliestTime>-15m</earliestTime>
        <latestTime>now</latestTime>
        <option name="field">count</option>        
      </single>
    </panel>
  </row>  
</form>
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Sure. You can give them an additional CSS class, and specify the font size there. Add this to your single values (assuming SimpleXML):

...
  <row>
    <single>
      ...
      <option name="additionalClass">largerSingleValue</option>
    </single>
    ...
  </row>
...

In your application.css or a more specific file linked to at the top of your dashboard you can specify the size like this:

.largerSingleValue {
  font-size: xx-large;
}

HeinzWaescher
Motivator

Sounds good, I'll get some admin support and have a look at this. Thanks!

0 Karma

shailesh030
Path Finder

Hi martin_mueller,
I made the change as suggested above and included a change in color of the SingleValue(field) as well. In the dashboard the color is changing but cannot see the font-size change instead the panel size is increasing. Any clues to what I might be doing wrong? Below is the CSS associated with additionalClass assigned to the panel.

.SingleValueHolder{
color:#FF0000;
font-size:150px;
font-weight:300;
width:auto;
}

Panel XML

Single Value Dasboard

<panel>
  <single>
    <title>TotalCount</title>
    <searchString>index=_internal | eval cur=if(_time &gt; relative_time(now(),"-15m"),1,0) | stats count by cur | sort -cur</searchString>
    <earliestTime>rt-30m</earliestTime>
    <latestTime>rt</latestTime>
    <option name="field">count</option>
    <option name="additionalClass">SingleValueHolder</option>

  </single>
</panel>
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...