org.moxieapps.gwt.highcharts.client.events
Interface ChartLoadEventHandler


public interface ChartLoadEventHandler

An interface that can be used as a callback handler whenever the core chart's "load" event is fired. General usage is as follows:

 chart.setLoadEventHandler(new ChartLoadEventHandler() {
    public boolean onLoad(ChartLoadEvent loadEvent) {
       Window.alert("The chart has been loaded");
       return true;
    }
 });
 

Since:
1.1.0
Author:
squinn@moxiegroup.com (Shawn Quinn)

Method Summary
 boolean onLoad(ChartLoadEvent chartLoadEvent)
          This method is fired whenever the chart's load event occurs.
 

Method Detail

onLoad

boolean onLoad(ChartLoadEvent chartLoadEvent)
This method is fired whenever the chart's load event occurs.

Parameters:
chartLoadEvent - The details of the event that occurred.
Returns:
The response to send back to the event handler function


Copyright © 2015. All Rights Reserved.