Dashboards & Visualizations

how to add Vertical Scrollbar for a panel

sravankaripe
Communicator

how can we add custom vertical scrollbar for a panels in a dashboard ?

we have pre-existing horizontal scrollbar
similarly i want vertical scrollbar how can i do it?

0 Karma

architkhanna
Path Finder

This works.However this is bringing scrollbar to all the panels on my dashboard.
Is there a way I can add this scroll to only a specific panel and not all?

0 Karma

rjthibod
Champion

I cannot give you a very specific answer without knowing more about your XML and what kind of panels you use.

For now, here is a generic approach that you can play with.

Add the following to your dashboard SimpleXML just before the closing </form> or </dashboard>. Getting the vertical scrollbar to appear relies on limiting the height of the panel and turning overflow to auto. The following will set the same height limits to all panels. You can change the value of the max-height setting to increase or shrink the panels. If you need to set the limits different for certain panels, then you will have to identify the panels by an ID and reference that ID in the CSS setting.

  <row depends="$dont_show$">
    <panel>
      <html>
        <style>
          .dashboard-row .dashboard-panel .panel-element-row {
            overflow: auto;
            max-height: 200px;
          }
        </style>
      </html>
    </panel>
  </row>

architkhanna
Path Finder

This works.However this is bringing scrollbar to all the panels on my dashboard.
Is there a way I can add this scroll to only a specific panel and not all?

0 Karma

niketn
Legend

What kind of visualization you intend to add Vertical Scroll bar and what is the scenario for the same?

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...