Dashboards & Visualizations

Javascript on drilldown

dsiob
Communicator

I have a map and two charts. When click on particular state on map, data in charts changes using tokens. I have applied javascript to keep the width ratio of charts as 65% and 35%.

Javascript Code:
`require(['jquery', 'splunkjs/mvc/simplexml/ready!'], function($) {

 var secondRow = $('.dashboard-row').eq(2);                           /*selects second row*/
 var panelCells = $(secondRow ).children('.dashboard-cell');    
     $(panelCells[0]).css('width', '65%');                       /*sets first chart width to 65% */        
     $(panelCells[1]).css('width', '35%');                      /*sets second chart width to 65% */

});
`

Problem:
When dashboard is loaded, javascript works fine and charts width shows as 65% and 35% ratio.
But when I click on any state on map and two charts gets refreshed, Javascript does not seems working!! Charts again comes as inbuilt ratio 50% and 50%
When dashboard loaded:
alt text

Does not work when charts refreshed:

alt text

0 Karma
1 Solution

rjthibod
Champion

You can put the CSS inline with your SimpleXML and side-step this issue. You will have to assign an ID to the panels in order to do it this way, e.g., in the SimpleXML definition use this for "Product Plane Details" panel: <panel id="panel_row_2_col_1">

Here is the inline CSS to add to the bottom of the dashboard.

  <row depends="$hiddenCSS$">
    <html>
      <style>
        #panel_row_2_col_1 {
          width: 65% !important;
        }
        #panel_row_2_col_2 {
          width: 35% !important;
        }
      </style>
    </html>
  </row>

View solution in original post

rjthibod
Champion

You can put the CSS inline with your SimpleXML and side-step this issue. You will have to assign an ID to the panels in order to do it this way, e.g., in the SimpleXML definition use this for "Product Plane Details" panel: <panel id="panel_row_2_col_1">

Here is the inline CSS to add to the bottom of the dashboard.

  <row depends="$hiddenCSS$">
    <html>
      <style>
        #panel_row_2_col_1 {
          width: 65% !important;
        }
        #panel_row_2_col_2 {
          width: 35% !important;
        }
      </style>
    </html>
  </row>

dsiob
Communicator

worked perfectly!! thanks rjthibod

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, ...