List of usage examples for com.google.gwt.visualization.client.events Handler addHandler
public static native void addHandler(Visualization<?> viz, String eventName, Handler handler) ;
From source file:com.rhizospherejs.gwt.client.gviz.GVizRhizosphere.java
License:Open Source License
/** * Adds an handler that will be notified when the visualization is ready for * user interaction./*from w ww.j a va2 s. co m*/ * * @param handler The handler to add. */ public final void addReadyHandler(ReadyHandler handler) { Handler.addHandler(this, "ready", handler); }