- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi
How do I control the size of the text displayed for the Trellis layout.
I am using the status indicator viz with trellis.
However the text displayed above the split by is too small. Using large size for trellis viz is not an option.
We can control the status_indicator_app viz with
<option name="status_indicator_app.status_indicator.staticColor">#2625A2</option>
but below does not work
<option name="status_indicator_app.status_indicator.fontSize">24px</option>
Likewise for trellis
<option name="trellis.splitBy">channel</option>
below does not work
<option name="trellis.fontSize">channel</option>
No options present in http://docs.splunk.com/Documentation/Splunk/6.2.1/Viz/ChartConfigurationReference
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hey stanwin,
I was having the same issue for a while now - but after another day of googling I managed to find a solution.
Try adding this to your dashboard:
<row depends="$alwaysHideCSSPanel$">
<panel>
<html>
<style>
.viz-panel.viz-facet-size-large .facet-label{
font-size:28px !important;
font-weight: bold !important;
}
</style>
</html>
</panel>
</row>
You may need to change "viz-facet-size-large" to suit the size of the Trellis you are using
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hey stanwin,
I was having the same issue for a while now - but after another day of googling I managed to find a solution.
Try adding this to your dashboard:
<row depends="$alwaysHideCSSPanel$">
<panel>
<html>
<style>
.viz-panel.viz-facet-size-large .facet-label{
font-size:28px !important;
font-weight: bold !important;
}
</style>
</html>
</panel>
</row>
You may need to change "viz-facet-size-large" to suit the size of the Trellis you are using
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hey stanwin,
Just wondering if this did what you need?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

This doesn't seem to do anything. Do I need to make other changes to make this work? Does this work in simple XML?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Scratch that it works great. I must have had a typo the first time. Thanks!!!!
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hello Kozanic
Excellent, thanks for the tip ! I was able to play around & using inspect figure out the element to change.
just adding below works also.
<row>
<panel>
<html>
<style>
.facet-label{
font-size:32px !important;
font-weight: bold !important;
}
</style>
</html>
<viz type="status_indicator_app.status_indicator">
<search>
<query>
for the one you mentioned, yes correct we have to match the size of trellis selected. e.g. for anyone who reads this
viz-facet-size-
<row>
<panel>
<html>
<style>
.viz-panel.viz-facet-size-small .facet-label{
font-size:52px !important;
font-weight: bold !important;
}
</style>
</html>
<viz type="status_indicator_app.status_indicator">
