Dashboards & Visualizations

Display table when chart is clicked

deepak02
Path Finder

Hi,

I have a dashboard (simple xml) which consists of 2 panels.

When I click on the first panel in the page, I want a table to be displayed under it.

What code should I do?

Both the behaviors are displayed in the screenshot I attached.
alt text
Thanks,
Deepak

Tags (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi deepak02,
in Splunk 6.X Dashboard Example App (https://splunkbase.splunk.com/app/1603/) there is an example for you (Contextual Drilldown).
Bye.
Giuseppe

0 Karma

cmerriman
Super Champion

here is a doc on drilldowns:
http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Predefined_tokens_for_dynamic_drilldow...
if you want the table to populate based on what you click, you'll want to set it to

    <drilldown>
       <set token="showtable">$click.value$</set>
    </drilldown>
...
<panel depends="$showtable$">

and then you'll want to use that token in the table syntax to limit the values

0 Karma

andrey2007
Contributor

Hello, deepak02

You should use tokens

  1. set token in table from which you pass token like this

    <drilldown>
    <set token="open_table">$row.field1$</set>
    </drilldown>

  2. add depends option to panel which you would like to show

    <panel depends="$open_table$">

Please mark answer if it was useful!

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...