Skip to content

drillthrough:after

This event occurs just after the window has been shown to the user with the drill through information in it.

Event Arguments

report

The current report object

data

The JSON object containing the information about the data point being drilled on.

See: Drill To Transactions Data-point Calculation Result

Example

report.api.bind("drillthrough:after", function(e) {
    // e.report
    // e.data. -> datasource/catalog/cube/memberUids
});
Back to top