Dashboards & Visualizations

how to hide/show panel in the dashboard based on radio button

sravankaripe
Communicator

i have a dashboard with 3 panels .
i want to hide/show my 3rd panel based on radio button.
Please provide sample code for my use case.

0 Karma
1 Solution

cmerriman
Super Champion

I have mine written out based on a checkbox, but you can probably tweek it for a radio button. Overview is my panel title that I'm hiding.

     ...
<input type="checkbox" token="overview" searchWhenChanged="true">
            <label>Overview</label>
            <choice value="true">Show</choice>
            <change>
              <condition label="Show">
                <set token="overview">true</set>
              </condition>
            </change>
            <default>true</default>
          </input>
    ...
    <panel depends="$overview$">
    ...

View solution in original post

AzJimbo
Path Finder

I used this today for a results panel - thank you.

However, If you just have html to present (instructions or overview or what ever) you can use the html5 tags

<panel>
<html>
    <details>
    <summary>here's the deetz</summary>
    <p>the deetz you're talking about</p>
    <details>
    <summary>sub-deetz</summary>
    <p>the nested sub deetz in html</p>
    </details>
    </details>
</html>
</panel>
0 Karma

cmerriman
Super Champion

I have mine written out based on a checkbox, but you can probably tweek it for a radio button. Overview is my panel title that I'm hiding.

     ...
<input type="checkbox" token="overview" searchWhenChanged="true">
            <label>Overview</label>
            <choice value="true">Show</choice>
            <change>
              <condition label="Show">
                <set token="overview">true</set>
              </condition>
            </change>
            <default>true</default>
          </input>
    ...
    <panel depends="$overview$">
    ...
Get Updates on the Splunk Community!

How to Get Started with Splunk Data Management Pipeline Builders (Edge Processor & ...

If you want to gain full control over your growing data volumes, check out Splunk’s Data Management pipeline ...

Out of the Box to Up And Running - Streamlined Observability for Your Cloud ...

  Tech Talk Streamlined Observability for Your Cloud Environment Register    Out of the Box to Up And Running ...

Splunk Smartness with Brandon Sternfield | Episode 3

Hello and welcome to another episode of "Splunk Smartness," the interview series where we explore the power of ...