Hello There,
I'm having 3 panles, where i need to display panel 1 in left side, In the same row I need to display Panle 2 and Panel 3 in left side in a stacked way.
Is there is possibel way in Classic dashboard in Splunk?
| Left | Top-Right |
| Panel |---------- |
| | Bot-Right|
Looking forward for the resposne.
Thanks!
Hi @smanojkumar
Sorry, I got my wires crossed. It doesnt look like this is possible with XML Dashboards, however you can probably achieve this design much easier with Dashboard Studio dashboard. Is there anything preventing you switching to a Dashboard Studio dashboard for this?
Thanks
Will
Hi @livehybrid ,
Thanks for your response!
The panels in right side weren't visible
<row>
<panel>
<title>Panel 1</title>
<table>
<search>
<query>| makeresults | eval name="p1"</query>
<earliest>$earliest$</earliest>
<latest>$latest$</latest>
</search>
<option name="drilldown">cell</option>
<option name="refresh.display">progressbar</option>
</table>
</panel>
<column>
<row>
<panel>
<title>Panel 2</title>
<table>
<search>
<query>| makeresults | eval name="p2"</query>
<earliest>$earliest$</earliest>
<latest>$latest$</latest>
</search>
<option name="drilldown">cell</option>
<option name="refresh.display">progressbar</option>
</table>
</panel>
</row>
<row>
<panel>
<title>Panel 3</title>
<table>
<search>
<query>| makeresults | eval name="p3"</query>
<earliest>$earliest$</earliest>
<latest>$latest$</latest>
</search>
<option name="drilldown">cell</option>
<option name="refresh.display">progressbar</option>
</table>
</panel>
</row>
</column>
</row>
Please try this.
Thanks!
Hi @smanojkumar
Sorry, I got my wires crossed. It doesnt look like this is possible with XML Dashboards, however you can probably achieve this design much easier with Dashboard Studio dashboard. Is there anything preventing you switching to a Dashboard Studio dashboard for this?
Thanks
Will