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

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

Introduction

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

Prototype

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

Source Link

Document

Set the selections that will be selected.

Usage

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

License:Apache License

/**
 * Set a new selection//from www .jav  a 2 s  .c  om
 * 
 * @param sel
 *            A Selection array containing one selection. The timeline
 *            accepts only one selection element, which must have the
 *            property row.
 */
public final void setSelections(JsArray<Selection> sel) {
    Selection.setSelections(this, sel);
}