Hello!
I have tried a lot of options to solve this, but nothing has worked so far.
I have a single panel, with 3 elements (Bar Chart, Pie Chart and Table), I want the Pie Chart and the Table to be side by side using a single panel.
I have this:
And I want it to be like this:
The last thing that I applied was this on my XML:
<row depends="$HiddenCSSPanel$">
<panel>
<html>
<style>
#Circ #pie.viz-controller {
display: inline-block !important;
width: 33% !important;
}
#table1 .viz-controller {
display: inline-block !important;
width: 33% !important;
}
</style>
</html>
</panel>
</row>
That just makes the Pie Chart and the Table smaller but they stay in the same place.
I am using Splunk 7.1.1
I also transformed my XML into HTML and played a little bit with lines like:
<div id="row3" class="dashboard-row dashboard-row3">
but had zero success.
Last but not least I read that transforming your Simple XML into Advanced XML is not viable in Splunk 7 ...
Any advice?
Thank you so much for reading me!
... View more