JavaScript Chart load event

Shield UI Chart offers a number of events, which can help in making the application more flexible and customizable.
The "load" event is raised when the control is loaded on the page. A standard declaration for the event looks like this:

events: {
    load: function(event) {
        alert("Chart Loaded");
    }
}

The "load" event offers access to the type of the event, through the "args.type" property.