Hello Helica Team,
I am using helical insight enterprise edition 4.1 GA. Is it possible to implement drill down from the adhoc report to another report CE or a canned report?
Thank You,
Netta.
Hello Helica Team,
I am using helical insight enterprise edition 4.1 GA. Is it possible to implement drill down from the adhoc report to another report CE or a canned report?
Thank You,
Netta.
Hello Netta,
hi_container.set("preExecution",function(c){
var viz_Options = c.get("viz_Options");
viz_Options.chartOptions.data = {
onclick: function(d) {
// console.log(d.name);
reportRender({movement_type:d.name});
}
};
c.set("viz_Options",viz_Options);
});
function reportRender(filters) {
window.open(window.DashboardGlobals.baseUrl+"hi.html?dir=1638269199312/1638416237748&file=4bc57cb6-5ada-4376-bcd7-b42aa27f7214.efw&mode=dashboard&TRUCK_TYPE="+filters.movement_type,"_blank");
}
Thank You,
Helical Insight.