Skip to content

postrender

This event occurs just before control is given back to the user after a report has finished calculating and rendering in the browser.

This is the most common event used as it’s the right time to make interface changes, such as changes to colors/images etc

Event Arguments

report

The current report object

Example

report.api.bind("postrender", function(e) {
    // e.report
});
Back to top