amcharts3
amcharts3 copied to clipboard
Version 3.21.12 rendered event is not fired
There is no effect anymore when there is no data in one of the charts on the page:
chart.addListener("rendered", function(event) {
console.log("rendered");
});
this however works always:
chart.addListener("dataUpdated", function(event) {
console.log("dataUpdated");
});