score:16

Accepted answer

you can use oncomplete callback function of animation. this will be called after the chart (animation) is completely rendered.

options: {
   animation: {
      oncomplete: function() {
         alert('line chart rendered completely!');
      }
   },
   ...
}

Related Query

More Query from same tag