Example usage for com.google.gwt.visualization.client.formatters ArrowFormat create

List of usage examples for com.google.gwt.visualization.client.formatters ArrowFormat create

Introduction

In this page you can find the example usage for com.google.gwt.visualization.client.formatters ArrowFormat create.

Prototype

public static native ArrowFormat create(Options options) ;

Source Link

Usage

From source file:com.google.gwt.visualization.sample.hellovisualization.client.VisualizationDemo.java

License:Apache License

private ArrowFormat createFormatter() {
    ArrowFormat.Options options = ArrowFormat.Options.create();
    options.setBase(1.5);
    return ArrowFormat.create(options);
}