Load

The "Load" event is raised when the control is loaded on the page. A standard declaration for the event looks like this:

<shield:ShieldChart runat="server">
    <ClientEvents Load="load" />
...
<script type="text/javascript">
    function load(args) {
        // handle the event
    }
</script>

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