Skip to content

drillthrough:calculation

This event occurs just after the response has been received from the server with the information about the cell drilled on, before that is sent off to the window to show 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:calculation", function(e) {
    // e.report
    // e.data. -> datasource/catalog/cube/memberUids
});
Back to top