Dashboards & Visualizations

How to display text message in the center of a dashboard panel?

Chinmai
Explorer

Hi Guys,

I am displaying a custom message in my dashboard panel whenever the search returns nothing. Currently this text message is displaying at the top of the panel, but I want the message to be displayed at the center of the panel.

Can anyone help me with this?

Many Thanks in advance.

0 Karma

rjthibod
Champion

You can use inline CSS on the html element that displays your message.

For example, here is something I do. As long as the token $no_data_chart_msg$ is defined, it will appear in place of the chart, and it is moved down using the margin setting.

<panel>
  <title>...</title>
  <html depends="$no_data_chart_msg$">
    <h3 style="margin: 100px 0 0 10px !important;">$no_data_chart_msg$</h3>
  </html>
  <chart rejects="$no_data_chart_msg$">
      ....
  </chart>
</panel>

If you want to center the message in the horizontal middle of the panel, you will probably have to get creative with the CSS using auto on the margin-left and margin-right settings.

0 Karma

cmerriman
Super Champion

What type of panel is this? Statistics table? HTML? Bar Chart? Single Value?

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...