0

I am using the Shield UI Charting javascript component. Is there a way to determine when the control has finished loading on the page?

Vladimir Georgiev
  • 1,949
  • 23
  • 26

1 Answers1

0

Yes. There is an event- events, that occurs after the chart has loaded completely. This is especially important when dealing with remote data, which can take some more time, compared to the loading time of the chart itself. Below is an example of using the load event:

events: {
   load: function(event) {
       alert("Chart has finished Loading");
   }
}
Irvin Dominin
  • 30,819
  • 9
  • 77
  • 111
Ed Jankowski
  • 449
  • 1
  • 3
  • 5