Package org.timepedia.chronoscope.gviz.api.client

Source Code of org.timepedia.chronoscope.gviz.api.client.GVizChronoscopeAPI

package org.timepedia.chronoscope.gviz.api.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;

import org.timepedia.chronoscope.client.browser.Chronoscope;
import org.timepedia.chronoscope.client.ChronoscopeOptions;
import org.timepedia.exporter.client.Exporter;

/**
*
*/
public class GVizChronoscopeAPI implements EntryPoint {

  public void onModuleLoad() {
    Chronoscope.setFontBookRendering(true);
    Chronoscope.setMicroformatsEnabled(false);
    ChronoscopeOptions.setErrorReporting(false);
    Chronoscope.getInstance();
    Exporter gvizExporter = GWT.create(ChronoscopeVisualization.class);
    gvizExporter.export();   
  }
}
TOP

Related Classes of org.timepedia.chronoscope.gviz.api.client.GVizChronoscopeAPI

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.