Hi All,
i am new to dashboards & i have created one dashboard which has two panels (Penel_1 & Panel_2), i am trying to pass parameter from Penel_1 to Panel_2, by clicking slice in pie chart from panel_1...
following is code i have written which looks good but its not working because dashboard is refreshing on click but parameter is not getting passed to panel_2 .
Requesting you to pls. help me on this...
Regards,
Mateen
i am new to dashboards & i have created one dashboard which has two panels (Penel_1 & Panel_2), i am trying to pass parameter from Penel_1 to Panel_2, by clicking slice in pie chart from panel_1...
following is code i have written which looks good but its not working because dashboard is refreshing on click but parameter is not getting passed to panel_2 .
Code:
function q(scene){ var vars = scene.vars;
var c = vars.category.value;
Dashboards.setParameter('param_custom_state', c.substring(7, c.length));
Dashboards.fireChange('param_custom_state', c.substring(7, c.length));
}
Regards,
Mateen