chart:rendering:complete¶
This event occurs just after all CALUMO charts have completed rendering - but not including the time they may spend animating
This event also fires even if there are no charts - to avoid the user having to cater for the event never firing
Event Arguments¶
None
Example¶
// Bind to the chart rendering completed event so we can react, knowing they exist
report.api.bind("chart:rendering:complete", function(){
// do something that relies on charts existing
});