Example usage for com.google.gwt.visualization.client.events Handler addHandler

List of usage examples for com.google.gwt.visualization.client.events Handler addHandler

Introduction

In this page you can find the example usage for com.google.gwt.visualization.client.events Handler addHandler.

Prototype

public static native void addHandler(Visualization<?> viz, String eventName, Handler handler) ;

Source Link

Document

Add a Handler to a visualization.

Usage

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);
}