amcharts3 icon indicating copy to clipboard operation
amcharts3 copied to clipboard

Version 3.21.12 rendered event is not fired

Open anti43 opened this issue 7 years ago • 0 comments

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");
});

anti43 avatar Jan 18 '18 08:01 anti43