Example usage for com.google.gwt.visualization.client Selection getSelections

List of usage examples for com.google.gwt.visualization.client Selection getSelections

Introduction

In this page you can find the example usage for com.google.gwt.visualization.client Selection getSelections.

Prototype

public static final native <E extends Visualization<?>, Selectable> JsArray<Selection> getSelections(
        E viz) ;

Source Link

Document

Get the Selections that are currently selected.

Usage

From source file:com.chap.links.client.Timeline.java

License:Apache License

/**
 * Returns a selection array containing the selected row
 * //from   w  w w  .j a  va2 s.c om
 * @return Selection array
 */
public final JsArray<Selection> getSelections() {
    return Selection.getSelections(this);
}