Dashboards & Visualizations

Hide Dashboard title but not edit and export buttons

nagar57
Communicator

I want to hide Dashboard title but not edit and export button. I can't leave <label></label> as blank because I am using this name in the navigation tab. If I'll leave the label as blank then in the navigation bar where I am placing this dashboard the name appears as None.

Labels (1)
1 Solution

poete
Builder

Hello @nagar57,

just add a few lines of js in order to hide the dashboard title at load time.

Here is the content of the js file.

require(['splunkjs/mvc','jquery', 'splunkjs/mvc/simplexml/ready!'], function (mvc,$) {
     var utils = require("splunkjs/mvc/utils");
     $(document).ready(function () {
         var l = document.getElementsByClassName("dashboard-title dashboard-header-title");
         l[0].innerHTML = "";
     });
 });

The js file shall be set in the appserver/static directory of the app and referenced in the dahboard like this:

<form script="name_of_the__script.js">

View solution in original post

jbjerke_splunk
Splunk Employee
Splunk Employee

The best option is to use the pre-defined configuration tags for the form or dashboard element. 

 

<form hideTitle="true">



You can read about all options which includes hideExport, hideAppBar here:
https://docs.splunk.com/Documentation/Splunk/latest/Viz/PanelreferenceforSimplifiedXML#dashboard_or_...


0 Karma

vnravikumar
Champion

Hi

Try this

<dashboard>
  <label>dashboard title</label>
  <row depends="$hide$">
    <html>
      <style>
        h1[data-view="views/dashboard/header/Title"]{
        display:none !important;
        }
      </style>
    </html>
  </row>
</dashboard>
0 Karma

nagar57
Communicator

Sorry but not working. The above accepted answer worked. I don't know whether it's a version problem or not. I am using Splunk 7.2

0 Karma

niketn
Legend

@nagar57 please add the following hidden row with CSS Style override to your existing dashboard. If you want to apply this for all dashboards in your Splunk App then move this to dashboard.css in your Splunk App under appserver/static folder (PS: If folder does not exist you will have to create one and this may require you to refresh/restart/bump your Splunk instance and clear out browser history).

 <row depends="$alwaysHideCSSSection$">
    <panel>
      <html>
        <style>
          h1.dashboard-header-title{
            visibility:hidden;
          }
        </style>
      </html>
    </panel>
  </row>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

nagar57
Communicator

Sorry but not working. The above accepted answer worked. I don't know whether it's a version problem or not. I am using Splunk 7.2

0 Karma

poete
Builder

Hello @nagar57,

just add a few lines of js in order to hide the dashboard title at load time.

Here is the content of the js file.

require(['splunkjs/mvc','jquery', 'splunkjs/mvc/simplexml/ready!'], function (mvc,$) {
     var utils = require("splunkjs/mvc/utils");
     $(document).ready(function () {
         var l = document.getElementsByClassName("dashboard-title dashboard-header-title");
         l[0].innerHTML = "";
     });
 });

The js file shall be set in the appserver/static directory of the app and referenced in the dahboard like this:

<form script="name_of_the__script.js">
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...